github.com/opentofu/opentofu@v1.7.1/internal/command/testdata/test/with_nested_setup_modules/setup/other/main.tf (about)

     1  
     2  variable "value" {
     3    type = string
     4  }
     5  
     6  resource "test_resource" "resource" {
     7    value = var.value
     8  }
     9  
    10  output "value" {
    11    value = test_resource.resource.value
    12  }