mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-24 15:36:26 -06:00
9 lines
182 B
Terraform
9 lines
182 B
Terraform
|
resource "aws_instance" "foo" {
|
||
|
count = 2
|
||
|
|
||
|
provisioner "local-exec" {
|
||
|
command = "echo ${aws_instance.foo.0.id}"
|
||
|
other = "echo ${aws_instance.foo.id}"
|
||
|
}
|
||
|
}
|