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

hacked vpc_max to use DB for initial management networks

parent 4fb90615
No related branches found
No related tags found
No related merge requests found
...@@ -66,11 +66,9 @@ module "vpc_max" { ...@@ -66,11 +66,9 @@ module "vpc_max" {
source = "terraform-aws-modules/vpc/aws" source = "terraform-aws-modules/vpc/aws"
for_each = local.zones for_each = local.zones
name = each.value["name"] name = each.value["name"]
cidr = each.value["cidr"] cidr = each.value["cidr"]
public_subnets = each.value["public_subnets"][0] public_subnets = each.value["public_subnets"]
private_subnets = each.value["private_subnets"][1]
database_subnets = each.value["management_subnets"][2]
enable_dns_hostnames = true enable_dns_hostnames = true
enable_dns_support = 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