opentofu/config/testdata/validate-count-module-var/main.tf
2019-06-30 10:16:15 +02:00

8 lines
105 B
HCL

module "foo" {
source = "./bar"
}
resource "aws_instance" "web" {
count = "${module.foo.bar}"
}