Skip to content

Commit 09e7146

Browse files
author
Craig O'Donnell
authored
unmask access key id input during restore (#646)
1 parent 441e096 commit 09e7146

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/embedded-cluster/restore.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ func newS3BackupStore() *s3BackupStore {
239239
store.region = prompts.New().Input("Region:", "", true)
240240
store.bucket = prompts.New().Input("Bucket:", "", true)
241241
store.prefix = prompts.New().Input("Prefix (press Enter to skip):", "", false)
242-
store.accessKeyID = prompts.New().Password("Access key ID:")
242+
store.accessKeyID = prompts.New().Input("Access key ID:", "", true)
243243
store.secretAccessKey = prompts.New().Password("Secret access key:")
244244
logrus.Info("")
245245
return store

0 commit comments

Comments
 (0)