github.com/Venafi/vcert/v5@v5.10.2/pkg/certificate/location.go (about)

     1  package certificate
     2  
     3  // Location represents a Device that needs enrollment or provisioning
     4  type Location struct {
     5  	Instance   string `yaml:"instance,omitempty"`
     6  	Workload   string `yaml:"workload,omitempty"`
     7  	TLSAddress string `yaml:"tlsAddress,omitempty"`
     8  	Replace    bool   `yaml:"replace,omitempty"`
     9  	Zone       string `yaml:"zone,omitempty"`
    10  }