From 8d74bdaea235a037fd9e744659455cccf204aed9 Mon Sep 17 00:00:00 2001 From: James Nesbitt Date: Tue, 22 Oct 2024 14:14:58 +0300 Subject: [PATCH] PRODENG-2719 fix default tf vars Signed-off-by: James Nesbitt --- examples/tf-aws/launchpad/terraform.tfvars | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/examples/tf-aws/launchpad/terraform.tfvars b/examples/tf-aws/launchpad/terraform.tfvars index 4090739a..b45741e5 100644 --- a/examples/tf-aws/launchpad/terraform.tfvars +++ b/examples/tf-aws/launchpad/terraform.tfvars @@ -20,11 +20,15 @@ launchpad = { // configure the network stack network = { - cidr = "172.31.0.0/16" - public_subnet_count = 3 - private_subnet_count = 0 // if 0 then no private nodegroups allowed - enable_vpn_gateway = false - enable_nat_gateway = false + cidr = "172.31.0.0/16" +} + +subnets = { + "Main" = { + cidr = "172.31.0.0/17" + nodegroups = ["ACon", "AWrk_Ubu22", "AWrk_Windows2022"] + private = false + } } // one definition for each group of machines to include in the stack