Skip to main content

sqd secrets

Manage account secrets. The secrets are exposed as environment variables, and are accessible to all the squids deployed by the current Aquarium account.

sqd secrets:ls

List all secrets for the current Aquarium account

USAGE
$ sqd secrets:ls

See code: src/commands/secrets/ls.ts

sqd secrets:rm NAME

Remove a secret

USAGE
$ sqd secrets:rm NAME

ARGUMENTS
NAME The secret name

See code: src/commands/secrets/rm.ts

sqd secrets:set NAME VALUE

Create or update a secret. The secret will be exposed as an environment variable with the given name to all the squids. Note the changes take affect only after a squid is restarted or updated.

USAGE
$ sqd secrets:set NAME VALUE

ARGUMENTS
NAME The secret name
VALUE The secret value

See code: src/commands/secrets/set.ts