Skip to content

Instantly share code, notes, and snippets.

@100daysofdevops
Created February 26, 2019 19:27
Show Gist options
  • Select an option

  • Save 100daysofdevops/46ff7d433c671df00ddb097dd6aec2db to your computer and use it in GitHub Desktop.

Select an option

Save 100daysofdevops/46ff7d433c671df00ddb097dd6aec2db to your computer and use it in GitHub Desktop.
# Private Subnet
resource "aws_subnet" "private_subnet" {
count = 2
cidr_block = "${var.private_cidrs[count.index]}"
vpc_id = "${aws_vpc.main.id}"
availability_zone = "${data.aws_availability_zones.available.names[count.index]}"
tags {
Name = "my-test-private-subnet.${count.index + 1}"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment