summaryrefslogtreecommitdiff
path: root/pkg/trust/config.go
blob: 164df2a90835fe6d69f92783539e301271c3cc58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package trust

// Policy describes a basic trust policy configuration
type Policy struct {
	Name           string   `json:"name"`
	RepoName       string   `json:"repo_name,omitempty"`
	Keys           []string `json:"keys,omitempty"`
	SignatureStore string   `json:"sigstore"`
	Transport      string   `json:"transport"`
	Type           string   `json:"type"`
	GPGId          string   `json:"gpg_id,omitempty"`
}