mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-07 22:53:08 -06:00
4bcf6cf6b2
[GH-636]
10 lines
161 B
HCL
10 lines
161 B
HCL
resource "aws_instance" "foo" {
|
|
count = 3
|
|
}
|
|
|
|
resource "aws_instance" "bar" {
|
|
provisioner "local-exec" {
|
|
foo = "${aws_instance.foo.*.id}"
|
|
}
|
|
}
|