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

     1  variable "input" {
     2    type = string
     3  }
     4  
     5  resource "test_resource" "foo" {
     6    value = var.input
     7  }