mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-20 11:48:24 -06:00
8 lines
109 B
Terraform
8 lines
109 B
Terraform
|
module "child" {
|
||
|
source = "./child"
|
||
|
}
|
||
|
|
||
|
resource aws_instance "web" {
|
||
|
depends_on = ["module.child"]
|
||
|
}
|