terraform/internal/command/testdata/test/provider_vars/main.tf
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

9 lines
127 B
HCL

terraform {
required_providers {
test = {
source = "hashicorp/test"
}
}
}
resource "test_resource" "foo" {}