Files
opentf/internal/command/testdata/test/with_verify_module/verify/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

11 lines
153 B
HCL

variable "id" {
type = string
}
data "test_data_source" "resource_data" {
id = var.id
}
resource "test_resource" "another_resource" {
id = "hi"
}