blob: 70048b50c017ea0efdde8c6e5dab1eb8e6eabf0a [file] [log] [blame]
resource "aws_instance" "a" {
foo = "bar"
}
module "child" {
source = "./child"
in = aws_instance.a.id
}
output "out" {
value = aws_instance.a.id
}