Snowflake cost connection
1. Snowflake setup guide
Create a Snowflake role and user
-- 1.### create user and role
use role useradmin;
create user if not exists paradime_cost_user
password = '<your_generated_password_here>'
default_role = paradime_cost_role
default_warehouse = paradime_warehouse
comment = 'Used by paradime.io for cost analytics';
create role if not exists paradime_cost_role comment = 'Used by paradime.io for cost analytics';
grant role paradime_cost_role to role sysadmin;
grant role paradime_cost_role to user paradime_cost_user;Create a Snowflake warehouse
Create S3 integration
Create a new database and schema for Paradime
Create a new Snowflake file format
Grant access to Snowflake metadata to the Paradime user
Enable the Paradime user to manage and monitor Snowflake Warehouses
Ensure your account has ORGADMIN access

Purchased your Snowflake credits through a reseller?
Full script here 👇
2. dbt™️ project setup guide
Create a macro to manage query comments
Update your dbt_project.yml file
3. Configured Cost connection in Paradime
Add a Snowflake Cost Connection
Step 2: Enter the Required Credentials
Last updated
Was this helpful?