mirror of
https://github.com/hashicorp/terraform.git
synced 2026-04-26 00:27:03 -04:00
* Process only relevant variables in the testing framework * add support for variables within test provider configurations * remove unused function * fix consistency checks
10 lines
135 B
HCL
10 lines
135 B
HCL
|
|
variables {
|
|
resource_directory = "my-resource-dir"
|
|
}
|
|
|
|
provider "test" {
|
|
resource_prefix = var.resource_directory
|
|
}
|
|
|
|
run "test" {}
|