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