mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
30 lines
653 B
Plaintext
30 lines
653 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# doctl auth
|
|
|
|
> Authenticate `doctl` with API tokens.
|
|
> More information: <https://docs.digitalocean.com/reference/doctl/reference/auth/>.
|
|
|
|
- Open a prompt to enter an API token and label its context:
|
|
|
|
`doctl auth init --context {{token_label}}`
|
|
|
|
- List authentication contexts (API tokens):
|
|
|
|
`doctl auth {{[ls|list]}}`
|
|
|
|
- Switch contexts (API tokens):
|
|
|
|
`doctl auth switch --context {{token_label}}`
|
|
|
|
- Remove a stored authentication context (API token):
|
|
|
|
`doctl auth remove --context {{token_label}}`
|
|
|
|
- Show available commands:
|
|
|
|
`doctl auth {{[-h|--help]}}`
|