Files
opentf/internal/configs/testdata/valid-modules/with-tests-module/setup/main.tf
Liam Cervante 5acc95dda7 [Testing Framework] Add module block to test run blocks (#33456)
* [testing framework] prepare for beta phase of development

* [Testing Framework] Add module block to test run blocks
2023-07-10 11:42:05 +01:00

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
}