Skip to content

Commit

Permalink
chore: access key and secret key can be empty if role is used
Browse files Browse the repository at this point in the history
  • Loading branch information
shadracnicholas committed Oct 11, 2024
1 parent 64bcab6 commit ecf2be1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/v1/store.go
Original file line number Diff line number Diff line change
Expand Up @@ -233,8 +233,8 @@ type S3Storage struct {
PublicBucketName string `json:"publicBucketName"`
Region string `json:"region,omitempty"`

AccessKeyRef SecretRef `json:"accessKeyRef"`
SecretAccessKeyRef SecretRef `json:"secretAccessKeyRef"`
AccessKeyRef SecretRef `json:"accessKeyRef,omitempty"`
SecretAccessKeyRef SecretRef `json:"secretAccessKeyRef,omitempty"`
}

type DatabaseSpec struct {
Expand Down

0 comments on commit ecf2be1

Please sign in to comment.