Skip to content

Instantly share code, notes, and snippets.

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

  • Save 100daysofdevops/84ec9aeaca9a94b8b41e24e352848699 to your computer and use it in GitHub Desktop.

Select an option

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