We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 309e773 commit 5995c13Copy full SHA for 5995c13
2 files changed
terraform/bastion-host.nix
@@ -22,7 +22,7 @@
22
associate_public_ip_address = false;
23
vpc_id = config.setup.vpc;
24
subnets = [
25
- getEnv "AWS_SUBNET_BASTION"
+ config.setup.bastionSubnet
26
# config.setup.subnets.primary
27
# config.setup.subnets.secondary
28
# config.setup.subnets.tertiary
terraform/main.nix
@@ -63,6 +63,7 @@ in {
63
secondary = getEnv "AWS_SUBNET_SECONDARY0";
64
tertiary = getEnv "AWS_SUBNET_SECONDARY1";
65
};
66
+ bastionSubnet = getEnv "AWS_SUBNET_BASTION";
67
68
69
functions =
0 commit comments