blob: f3e1d58df260f66eb5b63825c4ac493d3eaa3f01 [file] [log] [blame]
resource "aws_instance" "foo" {
for_each = toset(["a", "b", "c"])
foo = "number ${each.value}"
provisioner "shell" {
command = "${self.foo}"
}
}