Getting started / Reference /
Deploy Tokens

Deploy Tokens

Overview

Deploy tokens provide secure authentication for automated deployment systems, CI/CD pipelines, and external tools to interact with your Tapitalee application. These tokens offer scoped access control, allowing deployment operations without sharing personal credentials or compromising security.

Token Permissions

Deploy tokens can perform:

  • Deployments: Create and manage application deployments
  • Image Operations: Build, push, and deploy container images
  • Process Management: Restart processes and view status
  • Variable Access: Read environment variables (limited write access)
  • Log Access: View application logs and events
  • Status Queries: Check application and resource status

CLI Usage

Create Deploy Token

Create an API token for CI/CD pipelines to authenticate deployments

tapit create deploy_token description='token description'

Parameters

  • description: Human-readable description for the token, e.g. ‘GitHub Actions’ (required)

List Deploy Tokens

List all deploy tokens for the app with their description and last used time

tapit list deploy_tokens

Delete Deploy Token

Revoke and delete a deploy token

tapit delete deploy_token id=token_id

Parameters

  • id: ID of the token to delete (required; use list deploy_tokens to find IDs)