17 lines
215 B
Plaintext
17 lines
215 B
Plaintext
|
|
resource "aws_instance" "foo" {
|
||
|
|
}
|
||
|
|
|
||
|
|
module "child" {
|
||
|
|
source = "./child"
|
||
|
|
}
|
||
|
|
|
||
|
|
output "root_id" {
|
||
|
|
value = "${aws_instance.foo.id}"
|
||
|
|
}
|
||
|
|
|
||
|
|
output "ch}
|
||
|
|
|
||
|
|
output "grandchild_id" {
|
||
|
|
value = "${module.child.grandchild_id}"
|
||
|
|
}
|