2017-09-13 06:01:12 +03:00
|
|
|
/*
|
|
|
|
Package stores acts as a layer between the internal representation of encrypted files and the encrypted files
|
|
|
|
themselves.
|
|
|
|
|
|
|
|
Subpackages implement serialization and deserialization to multiple formats.
|
|
|
|
|
|
|
|
This package defines the structure SOPS files should have and conversions to and from the internal representation. Part
|
|
|
|
of the purpose of this package is to make it easy to change the SOPS file format while remaining backwards-compatible.
|
|
|
|
*/
|
2017-08-24 02:36:49 +03:00
|
|
|
package stores
|
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"fmt"
|
|
|
|
|
2019-11-18 21:06:58 +03:00
|
|
|
"go.mozilla.org/sops/v3"
|
|
|
|
"go.mozilla.org/sops/v3/azkv"
|
|
|
|
"go.mozilla.org/sops/v3/gcpkms"
|
|
|
|
"go.mozilla.org/sops/v3/kms"
|
|
|
|
"go.mozilla.org/sops/v3/pgp"
|
2017-08-24 02:36:49 +03:00
|
|
|
)
|
|
|
|
|
2017-09-13 06:01:12 +03:00
|
|
|
// SopsFile is a struct used by the stores as a helper to unmarshal the SOPS metadata
|
2017-08-24 02:36:49 +03:00
|
|
|
type SopsFile struct {
|
2017-10-04 00:35:28 +03:00
|
|
|
// Metadata is a pointer so we can easily tell when the field is not present
|
|
|
|
// in the SOPS file by checking for nil. This way we can show the user a
|
|
|
|
// helpful error message indicating that the metadata wasn't found, instead
|
|
|
|
// of showing a cryptic parsing error
|
2018-08-26 10:18:10 +03:00
|
|
|
Metadata *Metadata `yaml:"sops" json:"sops" ini:"sops"`
|
2017-08-24 02:36:49 +03:00
|
|
|
}
|
|
|
|
|
2017-09-12 19:59:23 +03:00
|
|
|
// Metadata is stored in SOPS encrypted files, and it contains the information necessary to decrypt the file.
|
2017-08-24 02:36:49 +03:00
|
|
|
// This struct is just used for serialization, and SOPS uses another struct internally, sops.Metadata. It exists
|
|
|
|
// in order to allow the binary format to stay backwards compatible over time, but at the same time allow the internal
|
|
|
|
// representation SOPS uses to change over time.
|
|
|
|
type Metadata struct {
|
2017-09-18 12:22:36 +03:00
|
|
|
ShamirThreshold int `yaml:"shamir_threshold,omitempty" json:"shamir_threshold,omitempty"`
|
|
|
|
KeyGroups []keygroup `yaml:"key_groups,omitempty" json:"key_groups,omitempty"`
|
|
|
|
KMSKeys []kmskey `yaml:"kms" json:"kms"`
|
|
|
|
GCPKMSKeys []gcpkmskey `yaml:"gcp_kms" json:"gcp_kms"`
|
2018-06-17 23:50:30 +03:00
|
|
|
AzureKeyVaultKeys []azkvkey `yaml:"azure_kv" json:"azure_kv"`
|
2017-09-18 12:22:36 +03:00
|
|
|
LastModified string `yaml:"lastmodified" json:"lastmodified"`
|
|
|
|
MessageAuthenticationCode string `yaml:"mac" json:"mac"`
|
|
|
|
PGPKeys []pgpkey `yaml:"pgp" json:"pgp"`
|
2018-04-08 17:53:54 +03:00
|
|
|
UnencryptedSuffix string `yaml:"unencrypted_suffix,omitempty" json:"unencrypted_suffix,omitempty"`
|
2018-04-08 12:43:43 +03:00
|
|
|
EncryptedSuffix string `yaml:"encrypted_suffix,omitempty" json:"encrypted_suffix,omitempty"`
|
2019-08-14 22:39:21 +03:00
|
|
|
EncryptedRegex string `yaml:"encrypted_regex,omitempty" json:"encrypted_regex,omitempty"`
|
2017-09-18 12:22:36 +03:00
|
|
|
Version string `yaml:"version" json:"version"`
|
2017-08-24 02:36:49 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
type keygroup struct {
|
2018-06-17 23:50:30 +03:00
|
|
|
PGPKeys []pgpkey `yaml:"pgp,omitempty" json:"pgp,omitempty"`
|
|
|
|
KMSKeys []kmskey `yaml:"kms,omitempty" json:"kms,omitempty"`
|
|
|
|
GCPKMSKeys []gcpkmskey `yaml:"gcp_kms,omitempty" json:"gcp_kms,omitempty"`
|
|
|
|
AzureKeyVaultKeys []azkvkey `yaml:"azure_kv,omitempty" json:"azure_kv,omitempty"`
|
2017-08-24 02:36:49 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
type pgpkey struct {
|
|
|
|
CreatedAt string `yaml:"created_at" json:"created_at"`
|
|
|
|
EncryptedDataKey string `yaml:"enc" json:"enc"`
|
|
|
|
Fingerprint string `yaml:"fp" json:"fp"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type kmskey struct {
|
2017-09-11 23:08:21 +03:00
|
|
|
Arn string `yaml:"arn" json:"arn"`
|
|
|
|
Role string `yaml:"role,omitempty" json:"role,omitempty"`
|
|
|
|
Context map[string]*string `yaml:"context,omitempty" json:"context,omitempty"`
|
2017-08-24 02:36:49 +03:00
|
|
|
CreatedAt string `yaml:"created_at" json:"created_at"`
|
|
|
|
EncryptedDataKey string `yaml:"enc" json:"enc"`
|
2019-01-11 17:40:28 +03:00
|
|
|
AwsProfile string `yaml:"aws_profile" json:"aws_profile"`
|
2017-08-24 02:36:49 +03:00
|
|
|
}
|
|
|
|
|
2017-09-18 12:22:36 +03:00
|
|
|
type gcpkmskey struct {
|
|
|
|
ResourceID string `yaml:"resource_id" json:"resource_id"`
|
|
|
|
CreatedAt string `yaml:"created_at" json:"created_at"`
|
|
|
|
EncryptedDataKey string `yaml:"enc" json:"enc"`
|
|
|
|
}
|
|
|
|
|
2018-06-17 23:50:30 +03:00
|
|
|
type azkvkey struct {
|
|
|
|
VaultURL string `yaml:"vault_url" json:"vault_url"`
|
|
|
|
Name string `yaml:"name" json:"name"`
|
|
|
|
Version string `yaml:"version" json:"version"`
|
|
|
|
CreatedAt string `yaml:"created_at" json:"created_at"`
|
|
|
|
EncryptedDataKey string `yaml:"enc" json:"enc"`
|
|
|
|
}
|
|
|
|
|
2017-09-12 19:59:23 +03:00
|
|
|
// MetadataFromInternal converts an internal SOPS metadata representation to a representation appropriate for storage
|
2017-08-24 02:36:49 +03:00
|
|
|
func MetadataFromInternal(sopsMetadata sops.Metadata) Metadata {
|
|
|
|
var m Metadata
|
|
|
|
m.LastModified = sopsMetadata.LastModified.Format(time.RFC3339)
|
|
|
|
m.UnencryptedSuffix = sopsMetadata.UnencryptedSuffix
|
2018-04-08 12:43:43 +03:00
|
|
|
m.EncryptedSuffix = sopsMetadata.EncryptedSuffix
|
2019-08-14 22:39:21 +03:00
|
|
|
m.EncryptedRegex = sopsMetadata.EncryptedRegex
|
2017-08-24 02:36:49 +03:00
|
|
|
m.MessageAuthenticationCode = sopsMetadata.MessageAuthenticationCode
|
|
|
|
m.Version = sopsMetadata.Version
|
2017-09-12 20:58:53 +03:00
|
|
|
m.ShamirThreshold = sopsMetadata.ShamirThreshold
|
2017-08-24 02:36:49 +03:00
|
|
|
if len(sopsMetadata.KeyGroups) == 1 {
|
|
|
|
group := sopsMetadata.KeyGroups[0]
|
|
|
|
m.PGPKeys = pgpKeysFromGroup(group)
|
|
|
|
m.KMSKeys = kmsKeysFromGroup(group)
|
2017-09-18 12:22:36 +03:00
|
|
|
m.GCPKMSKeys = gcpkmsKeysFromGroup(group)
|
2018-06-17 23:50:30 +03:00
|
|
|
m.AzureKeyVaultKeys = azkvKeysFromGroup(group)
|
2017-08-24 02:36:49 +03:00
|
|
|
} else {
|
|
|
|
for _, group := range sopsMetadata.KeyGroups {
|
|
|
|
m.KeyGroups = append(m.KeyGroups, keygroup{
|
2018-06-17 23:50:30 +03:00
|
|
|
KMSKeys: kmsKeysFromGroup(group),
|
|
|
|
PGPKeys: pgpKeysFromGroup(group),
|
|
|
|
GCPKMSKeys: gcpkmsKeysFromGroup(group),
|
|
|
|
AzureKeyVaultKeys: azkvKeysFromGroup(group),
|
2017-08-24 02:36:49 +03:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return m
|
|
|
|
}
|
|
|
|
|
|
|
|
func pgpKeysFromGroup(group sops.KeyGroup) (keys []pgpkey) {
|
|
|
|
for _, key := range group {
|
|
|
|
switch key := key.(type) {
|
|
|
|
case *pgp.MasterKey:
|
|
|
|
keys = append(keys, pgpkey{
|
|
|
|
Fingerprint: key.Fingerprint,
|
|
|
|
EncryptedDataKey: key.EncryptedKey,
|
|
|
|
CreatedAt: key.CreationDate.Format(time.RFC3339),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func kmsKeysFromGroup(group sops.KeyGroup) (keys []kmskey) {
|
|
|
|
for _, key := range group {
|
|
|
|
switch key := key.(type) {
|
|
|
|
case *kms.MasterKey:
|
|
|
|
keys = append(keys, kmskey{
|
|
|
|
Arn: key.Arn,
|
|
|
|
CreatedAt: key.CreationDate.Format(time.RFC3339),
|
|
|
|
EncryptedDataKey: key.EncryptedKey,
|
|
|
|
Context: key.EncryptionContext,
|
|
|
|
Role: key.Role,
|
2019-01-11 17:40:28 +03:00
|
|
|
AwsProfile: key.AwsProfile,
|
2017-08-24 02:36:49 +03:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-09-18 12:22:36 +03:00
|
|
|
func gcpkmsKeysFromGroup(group sops.KeyGroup) (keys []gcpkmskey) {
|
|
|
|
for _, key := range group {
|
|
|
|
switch key := key.(type) {
|
|
|
|
case *gcpkms.MasterKey:
|
|
|
|
keys = append(keys, gcpkmskey{
|
|
|
|
ResourceID: key.ResourceID,
|
|
|
|
CreatedAt: key.CreationDate.Format(time.RFC3339),
|
|
|
|
EncryptedDataKey: key.EncryptedKey,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-06-17 23:50:30 +03:00
|
|
|
func azkvKeysFromGroup(group sops.KeyGroup) (keys []azkvkey) {
|
|
|
|
for _, key := range group {
|
|
|
|
switch key := key.(type) {
|
|
|
|
case *azkv.MasterKey:
|
|
|
|
keys = append(keys, azkvkey{
|
|
|
|
VaultURL: key.VaultURL,
|
|
|
|
Name: key.Name,
|
|
|
|
Version: key.Version,
|
|
|
|
CreatedAt: key.CreationDate.Format(time.RFC3339),
|
|
|
|
EncryptedDataKey: key.EncryptedKey,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-09-12 19:59:23 +03:00
|
|
|
// ToInternal converts a storage-appropriate Metadata struct to a SOPS internal representation
|
2017-08-29 22:16:00 +03:00
|
|
|
func (m *Metadata) ToInternal() (sops.Metadata, error) {
|
2017-08-24 02:36:49 +03:00
|
|
|
lastModified, err := time.Parse(time.RFC3339, m.LastModified)
|
|
|
|
if err != nil {
|
2017-08-29 22:16:00 +03:00
|
|
|
return sops.Metadata{}, err
|
2017-08-24 02:36:49 +03:00
|
|
|
}
|
|
|
|
groups, err := m.internalKeygroups()
|
|
|
|
if err != nil {
|
2017-08-29 22:16:00 +03:00
|
|
|
return sops.Metadata{}, err
|
2017-08-24 02:36:49 +03:00
|
|
|
}
|
2019-08-14 22:39:21 +03:00
|
|
|
|
|
|
|
cryptRuleCount := 0
|
|
|
|
if m.UnencryptedSuffix != "" {
|
|
|
|
cryptRuleCount++
|
|
|
|
}
|
|
|
|
if m.EncryptedSuffix != "" {
|
|
|
|
cryptRuleCount++
|
|
|
|
}
|
|
|
|
if m.EncryptedRegex != "" {
|
|
|
|
cryptRuleCount++
|
2018-04-08 17:53:54 +03:00
|
|
|
}
|
2019-08-14 22:39:21 +03:00
|
|
|
|
|
|
|
if cryptRuleCount > 1 {
|
|
|
|
return sops.Metadata{}, fmt.Errorf("Cannot use more than one of encrypted_suffix, unencrypted_suffix, or encrypted_regex in the same file")
|
|
|
|
}
|
|
|
|
|
|
|
|
if cryptRuleCount == 0 {
|
2017-08-24 02:36:49 +03:00
|
|
|
m.UnencryptedSuffix = sops.DefaultUnencryptedSuffix
|
|
|
|
}
|
2017-08-29 22:16:00 +03:00
|
|
|
return sops.Metadata{
|
2017-08-24 02:36:49 +03:00
|
|
|
KeyGroups: groups,
|
2017-09-12 20:58:53 +03:00
|
|
|
ShamirThreshold: m.ShamirThreshold,
|
2017-08-24 02:36:49 +03:00
|
|
|
Version: m.Version,
|
|
|
|
MessageAuthenticationCode: m.MessageAuthenticationCode,
|
|
|
|
UnencryptedSuffix: m.UnencryptedSuffix,
|
2018-04-08 12:43:43 +03:00
|
|
|
EncryptedSuffix: m.EncryptedSuffix,
|
2019-08-14 22:39:21 +03:00
|
|
|
EncryptedRegex: m.EncryptedRegex,
|
2017-08-24 02:36:49 +03:00
|
|
|
LastModified: lastModified,
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2018-06-17 23:50:30 +03:00
|
|
|
func internalGroupFrom(kmsKeys []kmskey, pgpKeys []pgpkey, gcpKmsKeys []gcpkmskey, azkvKeys []azkvkey) (sops.KeyGroup, error) {
|
2017-08-24 02:36:49 +03:00
|
|
|
var internalGroup sops.KeyGroup
|
|
|
|
for _, kmsKey := range kmsKeys {
|
|
|
|
k, err := kmsKey.toInternal()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
internalGroup = append(internalGroup, k)
|
|
|
|
}
|
2017-09-18 12:22:36 +03:00
|
|
|
for _, gcpKmsKey := range gcpKmsKeys {
|
|
|
|
k, err := gcpKmsKey.toInternal()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
internalGroup = append(internalGroup, k)
|
|
|
|
}
|
2018-06-17 23:50:30 +03:00
|
|
|
for _, azkvKey := range azkvKeys {
|
|
|
|
k, err := azkvKey.toInternal()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
internalGroup = append(internalGroup, k)
|
|
|
|
}
|
2017-08-24 02:36:49 +03:00
|
|
|
for _, pgpKey := range pgpKeys {
|
|
|
|
k, err := pgpKey.toInternal()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
internalGroup = append(internalGroup, k)
|
|
|
|
}
|
|
|
|
return internalGroup, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Metadata) internalKeygroups() ([]sops.KeyGroup, error) {
|
|
|
|
var internalGroups []sops.KeyGroup
|
2018-06-17 23:50:30 +03:00
|
|
|
if len(m.PGPKeys) > 0 || len(m.KMSKeys) > 0 || len(m.GCPKMSKeys) > 0 || len(m.AzureKeyVaultKeys) > 0 {
|
|
|
|
internalGroup, err := internalGroupFrom(m.KMSKeys, m.PGPKeys, m.GCPKMSKeys, m.AzureKeyVaultKeys)
|
2017-08-24 02:36:49 +03:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
internalGroups = append(internalGroups, internalGroup)
|
|
|
|
return internalGroups, nil
|
|
|
|
} else if len(m.KeyGroups) > 0 {
|
|
|
|
for _, group := range m.KeyGroups {
|
2018-06-17 23:50:30 +03:00
|
|
|
internalGroup, err := internalGroupFrom(group.KMSKeys, group.PGPKeys, group.GCPKMSKeys, group.AzureKeyVaultKeys)
|
2017-08-24 02:36:49 +03:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
internalGroups = append(internalGroups, internalGroup)
|
|
|
|
}
|
|
|
|
return internalGroups, nil
|
|
|
|
} else {
|
|
|
|
return nil, fmt.Errorf("No keys found in file")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (kmsKey *kmskey) toInternal() (*kms.MasterKey, error) {
|
|
|
|
creationDate, err := time.Parse(time.RFC3339, kmsKey.CreatedAt)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &kms.MasterKey{
|
|
|
|
Role: kmsKey.Role,
|
|
|
|
EncryptionContext: kmsKey.Context,
|
|
|
|
EncryptedKey: kmsKey.EncryptedDataKey,
|
|
|
|
CreationDate: creationDate,
|
|
|
|
Arn: kmsKey.Arn,
|
2019-01-11 17:40:28 +03:00
|
|
|
AwsProfile: kmsKey.AwsProfile,
|
2017-08-24 02:36:49 +03:00
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2017-09-18 12:22:36 +03:00
|
|
|
func (gcpKmsKey *gcpkmskey) toInternal() (*gcpkms.MasterKey, error) {
|
|
|
|
creationDate, err := time.Parse(time.RFC3339, gcpKmsKey.CreatedAt)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &gcpkms.MasterKey{
|
|
|
|
ResourceID: gcpKmsKey.ResourceID,
|
|
|
|
EncryptedKey: gcpKmsKey.EncryptedDataKey,
|
|
|
|
CreationDate: creationDate,
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2018-06-17 23:50:30 +03:00
|
|
|
func (azkvKey *azkvkey) toInternal() (*azkv.MasterKey, error) {
|
|
|
|
creationDate, err := time.Parse(time.RFC3339, azkvKey.CreatedAt)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &azkv.MasterKey{
|
|
|
|
VaultURL: azkvKey.VaultURL,
|
|
|
|
Name: azkvKey.Name,
|
|
|
|
Version: azkvKey.Version,
|
|
|
|
EncryptedKey: azkvKey.EncryptedDataKey,
|
|
|
|
CreationDate: creationDate,
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2017-08-24 02:36:49 +03:00
|
|
|
func (pgpKey *pgpkey) toInternal() (*pgp.MasterKey, error) {
|
|
|
|
creationDate, err := time.Parse(time.RFC3339, pgpKey.CreatedAt)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &pgp.MasterKey{
|
|
|
|
EncryptedKey: pgpKey.EncryptedDataKey,
|
|
|
|
CreationDate: creationDate,
|
|
|
|
Fingerprint: pgpKey.Fingerprint,
|
|
|
|
}, nil
|
|
|
|
}
|
2019-01-23 12:51:47 +03:00
|
|
|
|
2019-07-09 01:32:33 +03:00
|
|
|
// ExampleComplexTree is an example sops.Tree object exhibiting complex relationships
|
2019-01-23 12:51:47 +03:00
|
|
|
var ExampleComplexTree = sops.Tree{
|
|
|
|
Branches: sops.TreeBranches{
|
|
|
|
sops.TreeBranch{
|
|
|
|
sops.TreeItem{
|
|
|
|
Key: "hello",
|
|
|
|
Value: `Welcome to SOPS! Edit this file as you please!`,
|
|
|
|
},
|
|
|
|
sops.TreeItem{
|
|
|
|
Key: "example_key",
|
|
|
|
Value: "example_value",
|
|
|
|
},
|
|
|
|
sops.TreeItem{
|
|
|
|
Key: sops.Comment{Value: " Example comment"},
|
|
|
|
Value: nil,
|
|
|
|
},
|
|
|
|
sops.TreeItem{
|
|
|
|
Key: "example_array",
|
|
|
|
Value: []interface{}{
|
|
|
|
"example_value1",
|
|
|
|
"example_value2",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
sops.TreeItem{
|
|
|
|
Key: "example_number",
|
|
|
|
Value: 1234.56789,
|
|
|
|
},
|
|
|
|
sops.TreeItem{
|
|
|
|
Key: "example_booleans",
|
|
|
|
Value: []interface{}{true, false},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2019-07-09 01:32:33 +03:00
|
|
|
// ExampleSimpleTree is an example sops.Tree object exhibiting only simple relationships
|
|
|
|
// with only one nested branch and only simple string values
|
2019-01-23 12:51:47 +03:00
|
|
|
var ExampleSimpleTree = sops.Tree{
|
|
|
|
Branches: sops.TreeBranches{
|
|
|
|
sops.TreeBranch{
|
|
|
|
sops.TreeItem{
|
|
|
|
Key: "Welcome!",
|
|
|
|
Value: sops.TreeBranch{
|
|
|
|
sops.TreeItem{
|
|
|
|
Key: sops.Comment{Value: " This is an example file."},
|
|
|
|
Value: nil,
|
|
|
|
},
|
|
|
|
sops.TreeItem{
|
|
|
|
Key: "hello",
|
|
|
|
Value: "Welcome to SOPS! Edit this file as you please!",
|
|
|
|
},
|
|
|
|
sops.TreeItem{
|
|
|
|
Key: "example_key",
|
|
|
|
Value: "example_value",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2019-07-09 01:32:33 +03:00
|
|
|
// ExampleFlatTree is an example sops.Tree object exhibiting only simple relationships
|
|
|
|
// with no nested branches and only simple string values
|
2019-01-23 12:51:47 +03:00
|
|
|
var ExampleFlatTree = sops.Tree{
|
|
|
|
Branches: sops.TreeBranches{
|
|
|
|
sops.TreeBranch{
|
|
|
|
sops.TreeItem{
|
|
|
|
Key: sops.Comment{Value: " This is an example file."},
|
|
|
|
Value: nil,
|
|
|
|
},
|
|
|
|
sops.TreeItem{
|
|
|
|
Key: "hello",
|
|
|
|
Value: "Welcome to SOPS! Edit this file as you please!",
|
|
|
|
},
|
|
|
|
sops.TreeItem{
|
|
|
|
Key: "example_key",
|
|
|
|
Value: "example_value",
|
|
|
|
},
|
2020-01-24 20:03:34 +03:00
|
|
|
sops.TreeItem{
|
|
|
|
Key: "example_multiline",
|
|
|
|
Value: "foo\nbar\nbaz",
|
|
|
|
},
|
2019-01-23 12:51:47 +03:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|