You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(secrets): add interactive masked prompt for secrets set
- Prompt for secret values when name provided without value
- Display asterisks per character for input length verification
- Handle Ctrl+C, backspace, and non-printable character filtering
- Maintain backwards compatibility with NAME=VALUE inline syntax
- Skip SUPABASE_ prefixed names before prompting
Copy file name to clipboardExpand all lines: cmd/secrets.go
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -26,9 +26,9 @@ var (
26
26
}
27
27
28
28
secretsSetCmd=&cobra.Command{
29
-
Use: "set <NAME=VALUE> ...",
29
+
Use: "set [NAME=VALUE | NAME] ...",
30
30
Short: "Set a secret(s) on Supabase",
31
-
Long: "Set a secret(s) to the linked Supabase project.",
31
+
Long: "Set a secret(s) to the linked Supabase project. When a secret name is provided without a value, you will be prompted to enter it interactively.",
0 commit comments