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

11 lines
202 B
Go
Raw Normal View History

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