Managing Globe Tokens
The globe token
command allows you to create, list, and delete authentication tokens. These tokens can be used to authenticate the CLI or other tools without requiring interactive login.
Subcommands
globe token create
: Creates a new token.globe token list
: Lists existing tokens.globe token delete
: Deletes a token.
Flags
--name
: Required. A descriptive name for the token.--expiry
: The expiration date of the token (format: YYYY-MM-DD).--project
: Associate the token with specific project IDs (comma-separated).--help
: Displays help information.--verbose
: Displays verbose output.--token
: Use API token for CLI Auth.
Example:
globe token create --name="CI/CD Token" --expiry="2024-12-31" --project="project-id-1,project-id-2"