mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-22 18:33:08 -04:00
* [testing framework] prepare for beta phase of development * [Testing Framework] Add module block to test run blocks
13 lines
165 B
HCL
13 lines
165 B
HCL
variable "value" {
|
|
type = string
|
|
}
|
|
|
|
variable "id" {
|
|
type = string
|
|
}
|
|
|
|
resource "test_resource" "managed" {
|
|
provider = setup
|
|
id = var.id
|
|
value = var.value
|
|
}
|