mirror of
https://github.com/opentofu/opentofu.git
synced 2026-05-20 09:14:37 -04:00
11 lines
255 B
Terraform
11 lines
255 B
Terraform
|
|
# 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)
|
||
|
|
}
|