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

     1  
     2  variable "value" {
     3    type = string
     4  }
     5  
     6  module "child" {
     7    source = "./other"
     8  
     9    value = var.value
    10  }
    11  
    12  output "value" {
    13    value = module.child.value
    14  }