blob: 2c47edadff9a27b0b3f206e8e56d1ad29228b4ca [file] [log] [blame]
module "child" {
source = "./child"
}
resource "aws_instance" "b" {
id = "b"
blah = "${module.child.a_output}"
}