We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 441e096 commit 09e7146Copy full SHA for 09e7146
cmd/embedded-cluster/restore.go
@@ -239,7 +239,7 @@ func newS3BackupStore() *s3BackupStore {
239
store.region = prompts.New().Input("Region:", "", true)
240
store.bucket = prompts.New().Input("Bucket:", "", true)
241
store.prefix = prompts.New().Input("Prefix (press Enter to skip):", "", false)
242
- store.accessKeyID = prompts.New().Password("Access key ID:")
+ store.accessKeyID = prompts.New().Input("Access key ID:", "", true)
243
store.secretAccessKey = prompts.New().Password("Secret access key:")
244
logrus.Info("")
245
return store
0 commit comments