Managing Globe Tokens

Create, list, and delete authentication tokens for the Globe CLI using globe token commands, enabling CI/CD integration and automated deployments.

globe token create

Creates a new authentication token that can be used to authenticate the CLI or other tools without requiring interactive login.

Usage

globe token create [flags]

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)

Example

globe token create --name="CI/CD Token" --expiry="2024-12-31" --project="project-id-1,project-id-2"

globe token list

Lists existing authentication tokens.

Usage

globe token list [flags]

Flags

  • --project: List tokens for a specific project

globe token delete

Deletes an authentication token.

Usage

globe token delete [flags]

Flags

  • --tokenId: Required. The ID of the token to delete

Example

globe token delete --tokenId="your-token-id"

Related Topics