Changing default of SnapshotsIndexLabel to owner_id
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Adam Štrauch 2021-11-01 01:26:14 +01:00
parent 66476275e4
commit f65702b416
Signed by: cx
GPG Key ID: 018304FFA8988F8D
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ type Config struct {
SnapshotsS3Endpoint string `envconfig:"SNAPSHOTS_S3_ENDPOINT" required:"false"`
SnapshotsS3SSL bool `envconfig:"SNAPSHOTS_S3_SSL" required:"false" default:"true"`
SnapshotsS3Bucket string `envconfig:"SNAPSHOTS_S3_BUCKET" required:"false" default:"snapshots"`
SnapshotsIndexLabel string `envconfig:"SNAPSHOTS_INDEX_LABEL" required:"false" default:"owner"` // Label that will be part of the object name and it will be used as index to quick listing
SnapshotsIndexLabel string `envconfig:"SNAPSHOTS_INDEX_LABEL" required:"false" default:"owner_id"` // Label that will be part of the object name and it will be used as index to quick listing
}
// GetConfig return configuration created based on environment variables