8 lines
107 B
Terraform
8 lines
107 B
Terraform
|
module "child" {
|
||
|
source = "./child"
|
||
|
}
|
||
|
|
||
|
resource aws_instance "web" {
|
||
|
depends_on = ["module.foo"]
|
||
|
}
|