Skip to content

Instantly share code, notes, and snippets.

@roustem
Created January 24, 2018 17:42
Show Gist options
  • Save roustem/12677bc94ca0648d5813b685d5164f0c to your computer and use it in GitHub Desktop.
Save roustem/12677bc94ca0648d5813b685d5164f0c to your computer and use it in GitHub Desktop.
resource "aws_subnet" "b5app" {
count = "${length(var.subnet_cidr["b5app"])}"
vpc_id = "${aws_vpc.b5.id}"
cidr_block = "${element(var.subnet_cidr["b5app"],count.index)}"
availability_zone = "${var.az[count.index]}"
tags {
Application = "B5"
env = "${var.env}"
type = "${var.type}"
Name = "${var.env}-b5-b5app-subnet-${count.index}"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment