mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-01-22 02:03:06 -05:00
8 lines
110 B
HCL
8 lines
110 B
HCL
resource "aws_instance" "foo" {
|
|
num = "3"
|
|
}
|
|
|
|
resource "aws_instance" "bar" {
|
|
num = aws_instance.foo.num
|
|
}
|