32 lines
504 B
Plaintext
32 lines
504 B
Plaintext
|
|
resource "aws_instance" "foo" {
|
||
|
|
}
|
||
|
|
|
||
|
|
module "child" {
|
||
|
|
srce "aws_instance" "foo" {
|
||
|
|
}
|
||
|
|
|
||
|
|
module "child" {
|
||
|
|
source = "./child"
|
||
|
|
}
|
||
|
|
|
||
|
|
output "root_id" {
|
||
|
|
value = "${aws |