opentofu/terraform/test-fixtures/apply-module-destroy-order/main.tf

8 lines
111 B
Terraform
Raw Normal View History

module "child" {
source = "./child"
}
resource "aws_instance" "b" {
blah = "${module.child.a_output}"
}