mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-21 11:01:23 -05: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}"
|
|
}
|