mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-05-16 07:01:54 -04:00
9 lines
182 B
HCL
9 lines
182 B
HCL
resource "aws_instance" "foo" {
|
|
count = 2
|
|
|
|
provisioner "local-exec" {
|
|
command = "echo ${aws_instance.foo.0.id}"
|
|
other = "echo ${aws_instance.foo.id}"
|
|
}
|
|
}
|