github.com/opentofu/opentofu@v1.7.1/internal/command/testdata/test/with_verify_module/main.tf (about) 1 variable "id" { 2 type = string 3 } 4 5 variable "value" { 6 type = string 7 } 8 9 resource "test_resource" "resource" { 10 id = var.id 11 value = var.value 12 }