github.com/anth0d/nomad@v0.0.0-20221214183521-ae3a0a2cad06/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  }