Reference
This section provides a detailed overview of the Ampersand CLI, including the available commands, their usage, and options.
Usage
The general syntax for using the Ampersand CLI is:
Where [command]
is one of the available commands, and [flags]
are parameters that modify the command’s behavior.
Global flags
Global flags are options available for any Ampersand CLI command, allowing you to modify behavior or provide additional information consistently across all operations.
Here are the available global flags:
-
-d, --debug
: Enables debug logging mode (default: false). This flag is useful for troubleshooting as it provides more detailed output about the command’s execution. -
-h, --help
: Displays help information for the command. This can be used to get more details about a specific command’s usage and options. -
-k, --key string
: Specifies the Ampersand API key. This allows you to authenticate your CLI sessions using an API key instead of interactive login, which can be particularly useful in automated scripts or CI/CD pipelines. -
-p, --project string
: Specifies the Ampersand project name or ID. You can useamp list:projects
to view available projects.
You can use these flags by adding them after any command. For example:
This command would list integrations for the project “my-project” with debug logging enabled.
Authentication commands
These commands allow you to manage your session with the Ampersand CLI. Use these to log in to your Ampersand account before running other commands. As an alternative to logging in, you can also run commands using an API key. See Running in CI/CD environments for details.
login
Authenticates you against the CLI via an interactive browser flow.
Syntax:
Example:
logout
Logs out from your Ampersand account.
Syntax:
Utility commands
These commands provide general functionality to help you use and understand the Ampersand CLI.
help
Displays help information about any command. You can use amp help
for general help and amp help [command]
for command-specific help.
Syntax:
Example:
Notes:
- Provides detailed information about command usage and available options.
version
Displays the version of the Ampersand CLI installed on your system.
Syntax:
Notes:
- Useful for verifying your CLI version or checking if updates are available.
- Outputs the current version number of the CLI.
Example:
Managing integrations
These commands are used to manage your integrations within Ampersand. They allow you to deploy changes to your integrations, delete integrations, and manage installations of integrations.
deploy
Deploys the integrations defined in the amp.yaml
file to Ampersand. If an integration already exists, this command will apply any changes to the existing integration.
Syntax:
Notes:
- Requires a folder containing an
amp.yaml
file. - Use this command to deploy new integrations or update existing ones.
- Use this command when you’ve made changes to your integration
Example:
delete:integration
Deletes a specific integration from your project.
Syntax:
Notes:
- This action is irreversible. Use with caution.
- Removes the integration & any associated installations from your project.
Example:
delete:installation
Deletes a specific installation of an integration.
Syntax:
Notes:
- This removes a specific installation of an integration, not the integration itself.
- Requires both the integration ID and installation ID.
Example:
Resource commands
These commands help you view and manage various resources within your Ampersand projects. Use them to inspect available destinations, current installations, integrations, and projects associated with your account.
list:destinations
Lists all available destinations in your project. For more details on Destinations, refer to the Ampersand Destinations Documentation.
Syntax:
Notes:
- The output includes destination IDs and names.
Example:
list:installations
Displays all current installations of a given integration in your project.
Syntax:
Example:
list:integrations
Provides a list of all integrations in your specified project.
Syntax:
Example:
list:projects
Displays all projects associated with your Ampersand account.
Syntax:
Notes:
- Lists your projects to help identify available projects when using other commands. Note that this command only displays project information and does not provide interactive project selection.
- Shows project IDs and names.
Example:
Was this page helpful?