aboutsummaryrefslogtreecommitdiff
path: root/weed/shell/command_remote_configure.go
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2021-08-30 17:28:33 -0700
committerChris Lu <chris.lu@gmail.com>2021-08-30 17:28:33 -0700
commit701cc133f3a44c902007103d191f86a597220634 (patch)
tree7646e542f9a9560dd17f449262d58edbabc762c9 /weed/shell/command_remote_configure.go
parent8ecd609b489f18b80f561bb577e502af7d6e7d00 (diff)
downloadseaweedfs-701cc133f3a44c902007103d191f86a597220634.tar.xz
seaweedfs-701cc133f3a44c902007103d191f86a597220634.zip
cloud drive: s3 add option for v4 signature
Diffstat (limited to 'weed/shell/command_remote_configure.go')
-rw-r--r--weed/shell/command_remote_configure.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/weed/shell/command_remote_configure.go b/weed/shell/command_remote_configure.go
index b6c4af178..03fe496d5 100644
--- a/weed/shell/command_remote_configure.go
+++ b/weed/shell/command_remote_configure.go
@@ -66,6 +66,7 @@ func (c *commandRemoteConfigure) Do(args []string, commandEnv *CommandEnv, write
remoteConfigureCommand.StringVar(&conf.S3Endpoint, "s3.endpoint", "", "endpoint for s3-compatible local object store")
remoteConfigureCommand.StringVar(&conf.S3StorageClass, "s3.storage_class", "", "s3 storage class")
remoteConfigureCommand.BoolVar(&conf.S3ForcePathStyle, "s3.force_path_style", true, "s3 force path style")
+ remoteConfigureCommand.BoolVar(&conf.S3V4Signature, "s3.v4_signature", false, "s3 V4 signature")
remoteConfigureCommand.StringVar(&conf.GcsGoogleApplicationCredentials, "gcs.appCredentialsFile", "", "google cloud storage credentials file, default to use env GOOGLE_APPLICATION_CREDENTIALS")