mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-04 13:17:43 -06:00
12 lines
222 B
HCL
12 lines
222 B
HCL
resource "aws_instance" "foo" {
|
|
num = "2"
|
|
compute = "dynamical"
|
|
compute_value = "${var.value}"
|
|
}
|
|
|
|
resource "aws_instance" "bar" {
|
|
provisioner "shell" {
|
|
foo = "${aws_instance.foo.dynamical}"
|
|
}
|
|
}
|