16171: Change issuer config to string to avoid trailing-slash pain.
[arvados.git] / sdk / go / arvados / config.go
index 9f9f00e6445ec676b7ca19877cef1e7b304912e2..dbd9f71099619203bb38f4dd1118b865f5c2f662 100644 (file)
@@ -156,6 +156,12 @@ type Cluster struct {
                        ClientSecret            string
                        AlternateEmailAddresses bool
                }
+               OpenIDConnect struct {
+                       Enable       bool
+                       Issuer       string
+                       ClientID     string
+                       ClientSecret string
+               }
                PAM struct {
                        Enable             bool
                        Service            string
@@ -259,12 +265,14 @@ type Volume struct {
 }
 
 type S3VolumeDriverParameters struct {
+       IAMRole            string
        AccessKey          string
        SecretKey          string
        Endpoint           string
        Region             string
        Bucket             string
        LocationConstraint bool
+       V2Signature        bool
        IndexPageSize      int
        ConnectTimeout     Duration
        ReadTimeout        Duration