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
### Secret Commands (alias: `s`)
```bash
rli secret create <name> # Create a new secret. Value can be piped in or entered via stdin (securely)
rli secret list # List all secrets
rli secret get <name> # Get secret metadata by name
rli secret update <name> # Update a secret value Value can be piped in or entered via stdin (securely)
rli secret delete <name> # Delete a secret
```
Copy file name to clipboardExpand all lines: src/utils/commands.ts
+70Lines changed: 70 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -684,6 +684,76 @@ export function createProgram(): Command {
684
684
awaitdeleteNetworkPolicy(id,options);
685
685
});
686
686
687
+
// Secret commands
688
+
constsecret=program
689
+
.command("secret")
690
+
.description("Manage secrets")
691
+
.alias("s");
692
+
693
+
secret
694
+
.command("create <name>")
695
+
.description(
696
+
"Create a new secret. Value can be piped via stdin (e.g., echo 'val' | rli secret create name) or entered interactively with masked input for security.",
0 commit comments