mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-05-20 12:02:01 -04:00
14 lines
217 B
HCL
14 lines
217 B
HCL
variable "value" {
|
|
default = ""
|
|
}
|
|
|
|
resource "aws_instance" "foo" {
|
|
num = "2"
|
|
compute = "value"
|
|
compute_value = "${var.value}"
|
|
}
|
|
|
|
resource "aws_instance" "bar" {
|
|
foo = "${aws_instance.foo.value}"
|
|
}
|