mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-26 17:01:04 -06:00
14 lines
239 B
HCL
14 lines
239 B
HCL
variable "value" {}
|
|
|
|
resource "aws_instance" "foo" {
|
|
num = "2"
|
|
compute = "value"
|
|
compute_value = "${var.value}"
|
|
}
|
|
|
|
resource "aws_instance" "bar" {
|
|
provisioner "shell" {
|
|
command = "${aws_instance.foo.value}"
|
|
}
|
|
}
|