mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-05-13 06:00:33 -04:00
9 lines
161 B
HCL
9 lines
161 B
HCL
resource "aws_instance" "create" {
|
|
bar = "abc"
|
|
}
|
|
|
|
resource "aws_instance" "other" {
|
|
var = "${aws_instance.create.id}"
|
|
foo = "${aws_instance.create.bar}"
|
|
}
|