Skip to content

Commit

Permalink
Fixed PR feedback for the tfvar template
Browse files Browse the repository at this point in the history
Signed-off-by: Dimitar <[email protected]>
  • Loading branch information
cranzy committed Jan 24, 2025
1 parent abb12aa commit fe1c507
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions examples/terraform/aws-simple/terraform.tfvars.template
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,17 @@ launchpad = {

// configure the network stack
network = {
cidr = "172.31.0.0/16"
public_subnet_count = 1
private_subnet_count = 0 // if 0 then no private nodegroups allowed
"cidr": "172.31.0.0/16",
"enable_nat_gateway": false,
"enable_vpn_gateway": false, "tags": {}
}

// configure the subnets in the vpc
subnets = {
"main" = {
"cidr" = "172.31.0.0/17", "private" = false, "nodegroups" = ["MngrUbuntu22", "WrkUbuntu22"]
"cidr" = "172.31.0.0/17",
"private" = false,
"nodegroups" = ["MngrUbuntu22", "WrkUbuntu22"]
}
}

Expand Down

0 comments on commit fe1c507

Please sign in to comment.