From fe1c507336db8a6cc882d1a16c9d1f49344e7a3a Mon Sep 17 00:00:00 2001 From: Dimitar Date: Fri, 24 Jan 2025 10:11:09 -0800 Subject: [PATCH] Fixed PR feedback for the tfvar template Signed-off-by: Dimitar --- .../terraform/aws-simple/terraform.tfvars.template | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/examples/terraform/aws-simple/terraform.tfvars.template b/examples/terraform/aws-simple/terraform.tfvars.template index 37ff4b42..6c1fbb63 100644 --- a/examples/terraform/aws-simple/terraform.tfvars.template +++ b/examples/terraform/aws-simple/terraform.tfvars.template @@ -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"] } }