mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-26 17:01:04 -06: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}"
|
|
}
|
|
}
|