Overview
SDF can hydrate table schemas and execute queries against a Snowflake DB. This guide will walk you through the steps of creating a Snowflake integration. By the end, you will be able to reference tables in your snowflake instance in SDF. SDF will use remote Snowflake schema information to do type bindings and other static analysis checks on your workspace.Prerequisites
In order to connect to Snowflake, you will need to have on hand the following:- A Snowflake account to connect to.
- Valid credentials with read access to materialize tables in your Snowflake account.
Guide
1
Collect Required Information
To connect to Snowflake, you need the following materials:
- Account ID - the 8 digit organization identifier
- Username - your Snowflake username
- Password - your Snowflake password
- Role - a role with appropriate permissions
- Warehouse - The warehouse you are connecting to.

Run
sdf auth login snowflake --help to see all login options.2
Connect SDF to Snowflake
Running the following command will prompt you to choose authentication method.
Password Authentication
Connect using username and password
Password Authentication
Connect using username and password
Choose the
password option and enter your password when prompted.Alternatively include the password directly inline:Key Pair Authentication
Connect using key pair authentication
Key Pair Authentication
Connect using key pair authentication
Choose
private key path or private key pem option and enter the path or pem content to your private key when prompted.- Supported key formats: PKCS#1, PKCS#8
Ensure you have generated and registered your key pair with Snowflake before using this method. Please refer to the Snowflake documentation for more information on setting up key pair authentication.
This will create a new credential in a
~/.sdf/ directory in the root of your system. This credential will be used to authenticate with Snowflake.SDF supports Duo push notifications for Snowflake Multi-Factor Authentication (MFA). When MFA is enabled for your Snowflake account, you’ll be prompted to complete the MFA step during authentication using Duo push.
3
Add Snowflake Provider in Workspace
Once authenticated, add an integration block to your Replace Integrations can also be configured to use specific credentials by referencing the credential name in the integration block. For example, if you wanted to use a credential called For more information on integration configuration, see the integration documentation.
workspace.sdf.yml. This tells SDF to use Snowflake to hydrate missing table schemas.<DATABASE> with the name of the database you want to hydrate. Note this is configurable and can be changed to any database you have access to. For example, if I wanted SDF to pull from two databases, called db1 and db2, I would write:snowflake-creds, you would write:4
Try it out!
Now that you’re connected, let’s make sure SDF can pull the schema information it needs.Run
sdf compile -q "select * from <DATABASE>.<SCHEMA>.<TABLE>" --show allIf the connection is successful, you will see the schema for the table you selected.The term ‘DATABASE’ in Snowflake is interchangeable with the term ‘CATALOG’ in SDF.