mirror of
https://github.com/thegeeklab/drone-yaml.git
synced 2024-11-16 15:20:38 +00:00
38 lines
1.0 KiB
Go
38 lines
1.0 KiB
Go
|
package yaml
|
||
|
|
||
|
import "errors"
|
||
|
|
||
|
type (
|
||
|
// Secret is a resource that provides encrypted data
|
||
|
// and pointers to external data (i.e. from vault).
|
||
|
Secret struct {
|
||
|
Version string `json:"version,omitempty"`
|
||
|
Kind string `json:"kind,omitempty"`
|
||
|
Type string `json:"type,omitempty"`
|
||
|
|
||
|
Data map[string]string `json:"data,omitempty"`
|
||
|
External map[string]ExternalData `json:"external_data,omitempty" yaml:"external_data"`
|
||
|
}
|
||
|
|
||
|
// ExternalData defines the path and name of external
|
||
|
// data located in an external or remote storage system.
|
||
|
ExternalData struct {
|
||
|
Path string `json:"path,omitempty"`
|
||
|
Name string `json:"name,omitempty"`
|
||
|
}
|
||
|
)
|
||
|
|
||
|
// GetVersion returns the resource version.
|
||
|
func (s *Secret) GetVersion() string { return s.Version }
|
||
|
|
||
|
// GetKind returns the resource kind.
|
||
|
func (s *Secret) GetKind() string { return s.Kind }
|
||
|
|
||
|
// Validate returns an error if the secret is invalid.
|
||
|
func (s *Secret) Validate() error {
|
||
|
if len(s.Data) == 0 && len(s.External) == 0 {
|
||
|
return errors.New("yaml: invalid secret resource")
|
||
|
}
|
||
|
return nil
|
||
|
}
|