mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-22 05:01:22 -05:00
* [testing framework] prepare for beta phase of development * [Testing Framework] Add module block to test run blocks
14 lines
165 B
HCL
14 lines
165 B
HCL
variable "value" {
|
|
type = string
|
|
}
|
|
|
|
variable "id" {
|
|
type = string
|
|
}
|
|
|
|
resource "test_resource" "managed" {
|
|
provider = setup
|
|
id = var.id
|
|
value = var.value
|
|
}
|