Skip to main content

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

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
Looking For the Config File

Just need to review the config file? Go to Profiles.

Prerequisites

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.

info

OAuth is not supported for the CLI.

Snowflake Key Pair Authentication

  1. Go through Snowflake’s key pair authentication steps to generate your keys.
  2. 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.
  3. Generate your public key using the private key created for Coalesce.
  4. 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.

  1. Navigate to Build Settings > Environments or Workspaces.
  2. Select Edit, , on the Environment or Workspace that you want to connect to Snowflake using Key Pair Auth.
  3. In Edit Environment or Workspace > User Credentials, select Authentication Type as Key Pair .
  4. Enter your Snowflake Username, Private Key, Private Key Passphrase (if applicable), Role and Warehouse into their respective fields and Save.
  5. Click Test Connection to ensure this works as expected.
  6. Move on to Get Your Access Token.
Workspace Settings Development page showing Snowflake connection configuration. Left sidebar lists Settings, User Credentials, Storage Mappings, Parameters, and OAuth Settings. Main panel displays connection details including Snowflake account URL (fka56740.snowflakecomputing.com), authentication fields for Key Pair login, and role set to ACCOUNTADMIN. Cancel and Save buttons at bottom.
Adding Your Private Key

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.

  1. Navigate to Build Settings > Environments or Workspaces.

  2. Select Edit on the environment or workspace that you wish to connect to Snowflake using Basic Auth.

  3. On the Settings Page, enter your Snowflake Account URL.

    1. Get your Snowflake URL, by opening the account selector in Snowflake.
    Add your Snowflake credentials in the build settings
  4. In Edit Environment or Workspace > User Credentials, select Authentication Type as Username and Password (Cloud).

  5. Enter the Username and Password and Save.

  6. Move on to Get Your Access Token.

Workspace settings interface for configuring Snowflake connection credentials, showing input fields for account URL, username, password, role, and warehouse configurations, with Save and Cancel buttons at the bottom

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.

Generate Coalesce access token
SSO Users and Environments

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.

Environments section under Build Settings in a Coalesce interface. It lists two environments, Production with ID 2 and QA with ID 6, along with a button to create a new environment.

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
  1. In your operating system's home directory, create a hidden folder .coa and an empty file with no extension called config inside.

    ~/
    └── .coa/
    └── config
  2. Copy and paste either the Key Pair or Basic information into your config file.

[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

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.

Default Profile

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?