opentofu/internal/command/testdata/init-module-variable-version/main.tf

11 lines
255 B
Terraform
Raw Permalink Normal View History

# See internal/initwd/testdata/registry-modules/root.tf for more information on the module required
variable "modver" {
type = string
}
module "acctest_root" {
source = "hashicorp/module-installer-acctest/aws"
version = nonsensitive(var.modver)
}