Snowflake

IP RESTRICTIONS

Make sure to allow traffic from one of the Paradime IPs in your firewall depending on the data location selected.

👉 See also: Paradime IP addresses.

Suggested permissions

This set of permissions will enable users in Paradime to read from and create tables and views when running dbt™️ from the Paradime terminal in you Snowflake database.

The role connected in Paradime for should have the below permissions for each database where your source data lives and where you want to materialize your models. Make sure to

-- grant permission to allow role to read from your source database
grant usage on database <your_databse_name> to role <snowflake_role>;
grant usage on future schemas in database <your_databse_name> to role <snowflake_role>;
grant select on future tables in database <your_databse_name> to role <snowflake_role>;
grant select on future views in database <your_databse_name> to role <snowflake_role>;
grant usage on all schemas in database <your_databse_name> to role <snowflake_role>;
grant select on all tables in database <your_databse_name> to role <snowflake_role>;
grant select on all views in database <your_databse_name> to role <snowflake_role>;

-- grant permission to allow role to write to your dev database
grant all on database <your_databse_name> to role <snowflake_role>;

Add Development Connection

You will be prompted to add a Development connection during the onboarding, or you can add more connections by going to account settings > connections, select Development Environment and enter the required fields.

Using Username & Password

Field Details

Below are list of fields and example to create a connection.

  • 🏢 Workspace level fields are set by the the workspace Admin and not configurable for by user

  • 👥 User level fields are set by each user (Admin/Developer) when setting the Development connection.

Using Snowflake OAuth

Check our Tutorial on how to setup Snowflake OAuth in your Snowflake account. Once this connection is configured, each user will be redirected to Snowflake and asked to authenticate their connection.

Fields Details

Below are list of fields and example to create a connection.

  • 🏢 Workspace level fields are set by the the workspace Admin and not configurable for by user

  • 👥 User level fields are set by each user (Admin/Developer) when setting the Development connection.

Using Key-Pair authentication

In Paradime you can use Key-Pair authentication method to enabled users to connect their development environment using a Private Key and optionally a Private Key Passphrase.

After generating an encrypted or unencrypted key pair,, you will need to set the rsa_public_key for the Snowflake user connecting to Paradime.

alter user johnsmith set rsa_public_key='MIIBIjANBgkqh...';

Fields Details

Below are list of fields and example to create a connection.

  • 🏢 Workspace level fields are set by the the workspace Admin and not configurable for by user

  • 👥 User level fields are set by each user (Admin/Developer) when setting the Development connection.

Last updated