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

     1  package addrs
     2  
     3  // LocalValue is the address of a local value.
     4  type LocalValue struct {
     5  	referenceable
     6  	Name string
     7  }
     8  
     9  func (v LocalValue) String() string {
    10  	return "local." + v.Name
    11  }