terraform/internal/command/testdata/test/provider_vars/main.tftest.hcl
Liam Cervante 5bbdc4c3b6
terraform test: allow providers in test files to reference variables (#34069)
* Process only relevant variables in the testing framework

* add support for variables within test provider configurations

* remove unused function

* fix consistency checks
2023-10-16 16:57:20 +02:00

10 lines
135 B
HCL

variables {
resource_directory = "my-resource-dir"
}
provider "test" {
resource_prefix = var.resource_directory
}
run "test" {}