blob: 72a1e7920076b8bb7bff849b38e5e711ff616466 [file] [log] [blame]
resource "aws_instance" "foo" {
count = 3
foo = "number ${count.index}"
provisioner "shell" {
command = "${self.foo}"
}
}