Skip to content

Commit

Permalink
PRODENG-2719 fix default tf vars
Browse files Browse the repository at this point in the history
Signed-off-by: James Nesbitt <[email protected]>
  • Loading branch information
james-nesbitt committed Oct 22, 2024
1 parent 1ddcbd2 commit 8d74bda
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions examples/tf-aws/launchpad/terraform.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8d74bda

Please sign in to comment.