mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-08 23:23:59 -06:00
8 lines
139 B
HCL
8 lines
139 B
HCL
resource "aws_instance" "web" {
|
|
count = 3
|
|
|
|
provisioner "remote-exec" {
|
|
inline = ["echo ${aws_instance.web.0.foo}"]
|
|
}
|
|
}
|