github.com/terramate-io/tf@v0.0.0-20230830114523-fce866b4dfcd/command/testdata/test/variables/main.tf (about)

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