mirror of
https://github.com/ZwareBear/JFrog-Cloud-Installers.git
synced 2026-01-21 00:06:55 -06:00
added documentation for system requirements
This commit is contained in:
@@ -354,7 +354,7 @@ resource "aws_launch_configuration" "master" {
|
||||
|
||||
associate_public_ip_address = true
|
||||
|
||||
user_data = "${template_file.init.rendered}"
|
||||
user_data = "${data.template_file.init.rendered}"
|
||||
|
||||
root_block_device {
|
||||
volume_type = "gp2"
|
||||
@@ -367,7 +367,7 @@ resource "aws_launch_configuration" "master" {
|
||||
}
|
||||
}
|
||||
|
||||
resource "template_file" "init" {
|
||||
data "template_file" "init" {
|
||||
template = "${file("userdata.sh")}"
|
||||
|
||||
vars = {
|
||||
@@ -406,7 +406,7 @@ resource "aws_launch_configuration" "secondary" {
|
||||
|
||||
associate_public_ip_address = true
|
||||
|
||||
user_data = "${template_file.secondary_init.rendered}"
|
||||
user_data = "${data.template_file.secondary_init.rendered}"
|
||||
|
||||
root_block_device {
|
||||
volume_type = "gp2"
|
||||
@@ -419,7 +419,7 @@ resource "aws_launch_configuration" "secondary" {
|
||||
}
|
||||
}
|
||||
|
||||
resource "template_file" "secondary_init" {
|
||||
data "template_file" "secondary_init" {
|
||||
template = "${file("userdata_secondary.sh")}"
|
||||
|
||||
vars = {
|
||||
|
||||
Reference in New Issue
Block a user