mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-04 13:17:43 -06:00
8 lines
152 B
HCL
8 lines
152 B
HCL
resource "aws_instance" "bar" {
|
|
connection {
|
|
host = "${element(aws_instance.bar.*.private_ip, 0)}"
|
|
}
|
|
|
|
provisioner "local-exec" {}
|
|
}
|