12 lines
162 B
Terraform
12 lines
162 B
Terraform
|
|
module "child" {
|
||
|
|
source = "./child"
|
||
|
|
}
|
||
|
|
|
||
|
|
resource "aws_instance" "foo" {
|
||
|
|
num = "2"
|
||
|
|
}
|
||
|
|
|
||
|
|
resource "aws_instance" "bar" {
|
||
|
|
foo = "${aws_instance.foo.num}"
|
||
|
|
}
|