terraform/internal/command/testdata/dynamic-module-sources/provider-function-in-version/main.tf
2026-04-29 17:32:08 -04:00

12 lines
193 B
HCL

terraform {
required_providers {
test = {
source = "test"
}
}
}
module "example" {
source = "./modules/example"
version = provider::test::is_true(true) ? "1.0.0" : ""
}