github.com/terraform-linters/tflint-plugin-sdk@v0.22.0/terraform/addrs/input_variable.go (about)

     1  package addrs
     2  
     3  // InputVariable is the address of an input variable.
     4  type InputVariable struct {
     5  	referenceable
     6  	Name string
     7  }
     8  
     9  func (v InputVariable) String() string {
    10  	return "var." + v.Name
    11  }