mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-01-31 03:00:18 -05:00
12 lines
162 B
HCL
12 lines
162 B
HCL
module "child" {
|
|
source = "./child"
|
|
}
|
|
|
|
resource "aws_instance" "foo" {
|
|
num = "2"
|
|
}
|
|
|
|
resource "aws_instance" "bar" {
|
|
foo = "${aws_instance.foo.num}"
|
|
}
|