opentofu/terraform/testdata/apply-module-bool/main.tf

9 lines
130 B
Terraform
Raw Normal View History

module "child" {
source = "./child"
leader = true
}
resource "aws_instance" "bar" {
foo = "${module.child.leader}"
}