Files
Packer-Cn/hcl2template/addrs/input_variable.go
T

12 lines
195 B
Go
Raw Normal View History

package addrs
// InputVariable is the address of an input variable.
type InputVariable struct {
referenceable
Name string
}
func (v InputVariable) String() string {
return "var." + v.Name
}