Skip to content

Instantly share code, notes, and snippets.

@KyMidd
Last active September 16, 2019 03:23
Show Gist options
  • Select an option

  • Save KyMidd/02730a187e1ef932a0abae40a08cf6fc to your computer and use it in GitHub Desktop.

Select an option

Save KyMidd/02730a187e1ef932a0abae40a08cf6fc to your computer and use it in GitHub Desktop.
module "kyler_test_subnets" {
source = "./modules/subnet"
vpc_id = aws_vpc.vpc.id
subnet_group = "KylerTest"
availability_zone = [
"a",
"c"
]
subnet_addresses = [
"10.1.10.0/24",
"10.1.20.0/24",
"10.1.30.0/24",
"10.1.40.0/24",
"10.1.50.0/24"
]
route_table_id = [
aws_route_table.route_table1.id,
aws_route_table.route_table2.id
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment