github.com/Ilhicas/nomad@v1.0.4-0.20210304152020-e86851182bc3/jobspec2/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  }