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