10 lines
173 B
Terraform
10 lines
173 B
Terraform
|
|
resource "aws_instance" "foo" {
|
||
|
|
count = 3
|
||
|
|
foo = "number ${count.index}"
|
||
|
|
|
||
|
|
provisioner "shell" {
|
||
|
|
command = aws_instance.foo[0].foo
|
||
|
|
order = count.index
|
||
|
|
}
|
||
|
|
}
|