Skip to content
Snippets Groups Projects
Commit 19413a70 authored by Michael Kennedy's avatar Michael Kennedy 🎱
Browse files

hacked vpc_max to use DB for initial management networks

parent 4bff47f9
No related branches found
No related tags found
No related merge requests found
......@@ -66,12 +66,13 @@ module "vpc_max" {
source = "terraform-aws-modules/vpc/aws"
for_each = local.zones
name = each.value["name"]
cidr = each.value["cidr"]
public_subnets = each.value["public_subnets"]
name = each.value["name"]
cidr = each.value["cidr"]
public_subnets = try(each.value["public_subnets"], "")
/* TODO testing passing
private_subnets = each.value["public_subnets"]
database_subnets = each.value["database_subnets"]
*/
enable_dns_hostnames = true
enable_dns_support = true
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment