opentofu/config/test-fixtures/validate-depends-on-module/main.tf
2016-11-12 08:21:27 -08:00

8 lines
109 B
HCL

module "child" {
source = "./child"
}
resource aws_instance "web" {
depends_on = ["module.child"]
}