github.com/opentofu/opentofu@v1.7.1/internal/command/testdata/test/with_provider_alias/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 id = var.id 11 value = var.value 12 }