mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-05-26 22:02:25 -04:00
9 lines
122 B
HCL
9 lines
122 B
HCL
module "child" {
|
|
source = "./child"
|
|
}
|
|
|
|
resource "aws_instance" "b" {
|
|
id = "b"
|
|
blah = "${module.child.a_output}"
|
|
}
|