Files
opentf/internal/command/testdata/test/with_verify_module/main.tf
Ronny Orot 1aa92856b1 Fix test command teardown order (#1043)
Signed-off-by: Ronny Orot <ronny.orot@gmail.com>
2023-12-20 16:38:42 +02:00

12 lines
146 B
HCL

variable "id" {
type = string
}
variable "value" {
type = string
}
resource "test_resource" "resource" {
id = var.id
value = var.value
}