mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-28 17:34:24 -06:00
8 lines
107 B
Terraform
8 lines
107 B
Terraform
|
module "child" {
|
||
|
source = "./child"
|
||
|
}
|
||
|
|
||
|
resource aws_instance "web" {
|
||
|
depends_on = ["module.foo"]
|
||
|
}
|