CLI Setup
CLI System Requirements
Minimum System Requirements
The system requirements are general guidelines and may vary depending upon the size of the Coalesce project. Projects with a large number of nodes may have higher system requirements.
- OS: 64-bit Windows 10, macOS 11, Linux kernel version 5.0+
- Processor: AWS t2.medium 4X vCPU or equivalent / Apple M1 / Intel Core i3-10100 4 Core or better / AMD Ryzen 3 1200 4 Core or better
- RAM: 8 GB+ RAM
- Storage: 1 GB+ free space
- Network: Access to Snowflake Instance and Coalesce Cloud
- Node Version: v20.x
Recommended System Requirements
If you are utilizing Coalesce with a high volume pipeline, having thousands of nodes or more in your environment, we recommend the following configuration:
- OS: 64-bit Windows 10, macOS 11, Linux kernel version 5.0+
- Processor: Apple M1 or newer (preferred) / AWS t2.medium 8X vCPU or equivalent / Intel i3 8X Core or higher / AMD Ryzen 3 8X Core or better
- RAM: 16 GB+ RAM
- Storage: 1 GB+ free space
- Network: Access to Snowflake Instance and Coalesce Cloud
- Node Version: v20.x
Just need to review the config file? Go to Profiles.
Prerequisites
- Install Node.js version 20.x
- Have a Coalesce project with a pipeline that has been committed. Take a look at the quick start for your data provider.
- Clone the repository connected to your Coalesce project. You'll use this when making requests.
Installation
- To install Coalesce CLI globally, run:
npm install -g @coalescesoftware/coa
. - If you need to update, run:
npm upgrade -g @coalescesoftware/coa
.
Authentication Methods
You can use Basic Auth or Key Pair Authentication. We recommend using Key Pair for automation.
OAuth is not supported for the CLI.
Snowflake Key Pair Authentication
- Go through Snowflake’s key pair authentication steps to generate your keys.
- Make sure to generate a private key and save it for later use in the Coalesce app and the CLI. You'll need the file path.
- Generate your public key using the private key created for Coalesce.
- Assign the public key to your Snowflake user.
Add Key Pair Authentication To Your Environment
Before using the CLI for Refresh and Deploy operations, you must add your created Key Pair to your Environment.
- Navigate to Build Settings > Environments or Workspaces.
- Select Edit, , on the Environment or Workspace that you want to connect to Snowflake using Key Pair Auth.
- In Edit Environment or Workspace > User Credentials, select Authentication Type as Key Pair .
- Enter your Snowflake Username, Private Key, Private Key Passphrase (if applicable), Role and Warehouse into their respective fields and Save.
- Click Test Connection to ensure this works as expected.
- Move on to Get Your Access Token.

When entering your private key, make sure it's formatted properly. It must include the full private key including the lines BEGIN ENCRYPTED PRIVATE KEY and END ENCRYPTED PRIVATE KEY.
-----BEGIN ENCRYPTED PRIVATE KEY-----
...
-----END ENCRYPTED PRIVATE KEY-----
Snowflake Basic Authentication
Basic authentication only requires your Snowflake username and password. This method is not recommended for automation. If you use OAuth to log into Snowflake, you'll need to use Key Pair for the CLI.
-
Navigate to Build Settings > Environments or Workspaces.
-
Select Edit on the environment or workspace that you wish to connect to Snowflake using Basic Auth.
-
On the Settings Page, enter your Snowflake Account URL.
- Get your Snowflake URL, by opening the account selector in Snowflake.
-
In Edit Environment or Workspace > User Credentials, select Authentication Type as Username and Password (Cloud).
-
Enter the Username and Password and Save.
-
Move on to Get Your Access Token.

Get Your Access Token
No matter the authentication method you use, you'll need an access token.
Go to the Deploy tab and click Generate Access Token.

SSO users will need a new access token for each new environment created.
Get Your Environment ID
There are many places to get your Environment ID. A quick method is to look into the Coalesce app.
Go to Build Settings > Environments.

Get Your Domain URL
Your URL is what you use to log in to Coalesce. The following are examples.
https://<company-name>.coalescesoftware.io
https://<company-name>.pp.us-east-2.aws.coalescesoftware.io
https://app.eu.coalescesoftware.io
https://<your-private-link-url>
Creating Your CLI Config File
Before creating your config file, ensure you have:
- Access token
- Environment ID
- Authentication credentials (Username/Password or Key Pair)
- Location of your private key file if using Key Pair
- Domain URL
-
In your operating system's home directory, create a hidden folder
.coa
and an empty file with no extension calledconfig
inside.~/
└── .coa/
└── config -
Copy and paste either the Key Pair or Basic information into your
config
file.
- Key Pair
- Basic
[default]
token=access_token
domain=your_domain_url
snowflakeAuthType=KeyPair
snowflakeKeyPairKey=file_path_to_private_key
snowflakeKeyPairPass=private key passphrase (if using KeyPair and if applicable. Can leave out if not using passphrase)
snowflakeRole=snowflake_user_role
snowflakeUsername=snowflake_user_name
snowflakeWarehouse=snowflake_warehouse
environmentID=environment_ID
[default]
token=access_token
domain=you_domain_url
snowflakeAuthType=Basic
snowflakeUsername=username
snowflakePassword=password
snowflakeRole=SYSADMIN (or other role)
snowflakeWarehouse=snowflake_warehouse
environmentID=envID
Create a Plan
To check your credentials, you'll create a plan.
A plan details the target environment, Nodes, jobs, and other information needed deploy or refresh. Create your plan in the same repo, branch, and commit.
coa plan
This will generate a coa-plan.json
. You can review this file, but we don't recommend editing directly. If you want to make changes, make them using the API or the Coalesce app. Then commit your changes and regenerate your plan.
HTTP Proxy
The Coalesce CLI will work with proxy environments. Set your proxy variables by using:
# For Windows (Command Prompt)
set HTTP_PROXY=http://your-proxy-address:port
set HTTPS_PROXY=http://your-proxy-address:port
# For Windows (PowerShell)
$env:HTTP_PROXY = "http://your-proxy-address:port"
$env:HTTPS_PROXY = "http://your-proxy-address:port"
# For macOS/Linux
export HTTP_PROXY=http://your-proxy-address:port
export HTTPS_PROXY=http://your-proxy-address:port
# Auth
export HTTP_PROXY=http://username:password@your-proxy-address:port
export HTTPS_PROXY=http://username:password@your-proxy-address:port
You can test your connection by using a tool like curl. For example:
curl https://app.coalescesoftware.io
curl -x http://your-proxy-address:port https://app.coalescesoftware.io
Profiles
In Coalesce, profiles allow you to run commands against different configurations, making it possible to tailor settings for various environments, such as testing or production. Each CLI command includes the --profile
option, which enables you to specify a profile for the scenario you're working with. If no profile is specified, the system defaults to using the [default]
profile. While you must have a [default]
profile, additional profiles can be named and configured as needed for different scenarios.
The default profile is required
[default]
token=yourtoken
domain=your deployment server. For example, https://app.eu.coalescesoftware.io
snowflakeAuthType=Basic or KeyPair
snowflakePassword=password
snowflakeKeyPairKey=path to the file containing the key (if using KeyPair)
snowflakeKeyPairPass= (if using KeyPair and if applicable)
snowflakeRole=SYSADMIN (or other role)
snowflakeUsername=username
snowflakeWarehouse=COMPUTE_WH
environmentID=environmentID
[testing]
token=yourtoken
domain=your deployment server. For example, https://app.eu.coalescesoftware.io
snowflakeAuthType=Basic or KeyPair
snowflakePassword=password
snowflakeKeyPairKey=path to the file containing the key (if using KeyPair)
snowflakeKeyPairPass=private key passphrase (if using KeyPair and if applicable)
snowflakeRole=SYSADMIN (or other role)
snowflakeUsername=username
snowflakeWarehouse=COMPUTE_WH (example)
environmentID=environmentID
What's Next?
- Some things you can use the CLI for is Deploy Using the CLI and Refreshing an Environment.
- Read the available CLI Commands.