k8s-csi-s3/pkg/s3/config.go

11 lines
202 B
Go
Raw Normal View History

2018-07-14 08:48:22 +00:00
package s3
2018-07-16 18:24:54 +00:00
// Config holds values to configure the driver
type Config struct {
2018-07-14 08:48:22 +00:00
AccessKeyID string
SecretAccessKey string
Region string
Endpoint string
2018-07-16 20:27:45 +00:00
Mounter string
2018-07-14 08:48:22 +00:00
}