Inspired by how the Heroku CLI has
config:set
and
config:unset
to manage secrets on apps on their CLI, it would be helpful to have this within
doctl
CLI... example:
doctl apps create-secret <app-id> --component <component-name> <secret-name> <secret-value>
doctl apps delete-secret <app-id> --component <component-name> <secret-name>
the
--component
argument would be optional, and if it's not there, applies to the app level.