mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-13 01:00:50 -04:00
10 lines
155 B
HCL
10 lines
155 B
HCL
module "child" {
|
|
source = "./child"
|
|
}
|
|
|
|
resource "aws_instance" "create" {}
|
|
|
|
resource "aws_instance" "other" {
|
|
foo = "${aws_instance.create.bar}"
|
|
}
|