mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-01-17 23:00:29 -05:00
10 lines
147 B
HCL
10 lines
147 B
HCL
resource "aws_instance" "foo" {}
|
|
|
|
resource "aws_instance" "bar" {
|
|
value = "${aws_instance.foo.value}"
|
|
}
|
|
|
|
module "child" {
|
|
source = "./child"
|
|
}
|