Skip to content

Instantly share code, notes, and snippets.

@JohnnyNiu
Created September 9, 2016 04:07
Show Gist options
  • Save JohnnyNiu/fa54692803c9478277642a38fac0b01b to your computer and use it in GitHub Desktop.
Save JohnnyNiu/fa54692803c9478277642a38fac0b01b to your computer and use it in GitHub Desktop.
terraform iterate a list to create resource
variable "foo" {
default = ["1", "2", "3"]
}
resource "aws_sns_topic" "test" {
name = "${element(var.foo, count.index)}"
count = "${length(var.foo) }"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment