Note on third‑party tools
We aim to provide accurate and helpful details about third‑party tools, but we can’t guarantee that this information is always complete or up to date. If you notice any discrepancies, feel free to share them in the feedback section below. For the most reliable information, please always refer to the third‑party tool’s official documentation.
Snowflake is a cloud data platform. Use the Snowflake component to access and update data in a Snowflake Database.
Connections
Snowflake Key Pair Authentication
Use this connection if you want to connect to Snowflake via their Key Pair Authentication.
Snowflake supports key-pair authentication using a public-private key pair. This authentication method provides enhanced security for programmatic access to Snowflake resources.
For detailed information, refer to the Snowflake key-pair authentication guide.
Prerequisites
- Active Snowflake account with appropriate user permissions
- Access to a command line environment or tool capable of generating RSA key pairs
- Ability to run SQL commands in Snowflake to assign the public key to a user
Setup Steps
- Generate a public-private key pair using OpenSSL or another key generation tool. The following command generates an encrypted private key:
openssl genrsa 2048 | openssl pkcs8 -topk8 -inform PEM -out rsa_key.p8
This creates a private key file (e.g., rsa_key.p8).
- Generate the corresponding public key:
openssl rsa -in rsa_key.p8 -pubout -out rsa_key.pub
-
Remove the header and footer lines from the public key file, then concatenate the remaining lines into a single line. The public key should be formatted as a continuous string without line breaks.
-
In Snowflake, assign the public key to the user account by running the following SQL command. Replace USERNAME with the actual username and PUBLIC_KEY_STRING with the formatted public key:
ALTER USER USERNAME SET RSA_PUBLIC_KEY='PUBLIC_KEY_STRING';
- Verify the public key assignment by running:
DESCRIBE USER USERNAME;
In the output, verify that the RSA_PUBLIC_KEY_FP property displays the fingerprint of the assigned public key.
Configure the Connection
- Enter the Account Name (e.g.,
myorg-account123)
- Enter the Username associated with the public key
- Enter the Private Key content from the
rsa_key.p8 file (include the full private key, including the header and footer lines)
- If the private key is encrypted, enter the Private Key Passphrase
:::note Private Key Security
It is highly recommended to use private key encryption for live integrations and should be kept secure and never shared.
:::
| Input |
Comments |
Default |
| Private Key |
The private key in PEM format for Snowflake Key Pair Authentication. Generate a key pair and register the public key with your Snowflake user. Learn more |
|
| Snowflake Username |
Your Snowflake username. This is typically your login name in uppercase. |
|
| Account Identifier |
Your Snowflake account identifier. Format: [organization]-[account] or [account].[region]. Find this in the organization's account panel. Learn more |
|
| Passphrase |
The passphrase for the provided private key. Leave blank if your key is not encrypted. |
|
Snowflake OAuth 2.0
Snowflake OAuth 2.0 Authentication.
Snowflake uses OAuth 2.0 for authentication and making API calls. This connection type requires creating a security integration within Snowflake and configuring OAuth settings.
For additional details, refer to the Snowflake OAuth custom client documentation.
Prerequisites
- Active Snowflake account with appropriate permissions to create security integrations
- User account with roles other than
ACCOUNTADMIN, SECURITYADMIN, or ORGADMIN (these roles are blocked from OAuth authentication by default)
Setup Steps
-
Log in to Snowflake and create a new worksheet to configure the security integration.
-
Create a new security integration by copying the following SQL statement into Snowflake and selecting the Play button at the top right of the screen. Replace INTEGRATIONNAME with a descriptive name:
CREATE SECURITY INTEGRATION
INTEGRATIONNAME
TYPE = OAUTH
OAUTH_CLIENT = CUSTOM
OAUTH_REDIRECT_URI = '`https://oauth2.Lansweeper.com/callback`'
OAUTH_CLIENT_TYPE = 'PUBLIC'
Note: The OAUTH_REDIRECT_URI should be set to the OAuth callback URL: https://oauth2.Lansweeper.com/callback
- Retrieve the Authorization URL, Token URL, and Client ID by running the following SQL statement. Replace
INTEGRATIONNAME with the name used in step 2:
DESCRIBE INTEGRATION INTEGRATIONNAME
- Retrieve the Client Secret by running the following SQL statement:
SELECT SYSTEM$SHOW_OAUTH_CLIENT_SECRETS('INTEGRATIONNAME')
Copy the value listed as OAUTH_CLIENT_SECRET from the returned results.
- Enable the security integration by running the following SQL statement:
ALTER SECURITY INTEGRATION INTEGRATIONNAME SET ENABLED = TRUE
Configuring Scopes
Scopes control which Snowflake role is used during the OAuth session. If no scope is specified, the user's default role is used.
Scope Format: session:role:<ROLE_NAME>
Common Scopes:
| Scope |
Description |
session:role:PUBLIC |
Use the PUBLIC role (available to all users) |
session:role:SYSADMIN |
Use the SYSADMIN role for database/warehouse management |
session:role:USERADMIN |
Use the USERADMIN role for user/role management |
session:role:ANALYST |
Use a custom ANALYST role (if configured) |
Examples:
- Single role:
session:role:SYSADMIN
- Multiple roles (space-separated):
session:role:SYSADMIN session:role:PUBLIC
Configure the Connection
- Enter the Authorization URL from step 3
- Enter the Token URL from step 3
- Enter the Client ID from step 3
- Enter the Client Secret from step 4
- Optionally configure Scopes
This connection uses OAuth 2.0, a common authentication mechanism for integrations.
Read about how OAuth 2.0 works here.
| Input |
Comments |
Default |
| Authorize URL |
The OAuth 2.0 Authorization URL for your Snowflake account. Format: https://[account-identifier].snowflakecomputing.com/oauth/authorize. Learn more |
|
| Token URL |
The OAuth 2.0 Token URL for your Snowflake account. Format: https://[account-identifier].snowflakecomputing.com/oauth/token-request. Learn more |
|
| Scopes |
Controls which Snowflake role is used during the session. Format: session:role:<ROLE_NAME>. If not specified, the user's default role is used. Space separate multiple scopes. Learn more |
|
| Client ID |
Client ID of your Snowflake OAuth integration. Obtain this from your security integration configuration. Learn more |
|
| Client Secret |
Client Secret of your Snowflake OAuth integration. Generated when creating the security integration. Learn more |
|
| Headers |
Additional headers to supply to authorization requests. |
|
Actions
Execute SQL
Executes one or more SQL statements in your Snowflake DB.
| Input |
Comments |
Default |
| Connection |
The Snowflake connection to use. |
|
| SQL statements to run |
The SQL statement(s) to execute in Snowflake. Can be a single statement or multiple statements separated by semicolons. |
|
| Snowflake Identifier URL |
The Snowflake URL for your account. Format: https://[account-identifier].snowflakecomputing.com |
|
| Account Locator |
The account locator for your Snowflake account. Find this in the organization's account panel. Learn more |
|
| Number of statements to execute |
The number of statements to execute. Use 0 to indicate a variable number of statements can be included in the request. |
|
| Timeout |
Timeout in seconds for statement execution. If the execution takes longer than the specified timeout, the execution is automatically canceled. |
|
| Database |
The database name in which the statement should be executed. |
|
| Schema |
The schema name in which the statement should be executed. |
|
| Warehouse |
The warehouse name to use when executing the statement. |
|
| Role |
The role name to use when executing the statement. |
|
| Bindings |
Values of bind variables in the SQL statement. Each binding has a type and value. Learn more |
|
| Parameters |
Session parameters to set for this request. Learn more |
|
| Poll for asynchronous results |
When true, the action will handle polling for results on queries that take longer than 45 seconds to execute. When false, the action returns immediately after executing the query. |
false |
| Debug Request |
Enabling this flag will log out the current request. |
false |
Get Statement Handle
Retrieve the current status of a executed statement from Snowflake.
| Input |
Comments |
Default |
| Connection |
The Snowflake connection to use. |
|
| Snowflake Identifier URL |
The Snowflake URL for your account. Format: https://[account-identifier].snowflakecomputing.com |
|
| Account Locator |
The account locator for your Snowflake account. Find this in the organization's account panel. Learn more |
|
| Statement Handle ID |
The unique identifier of the statement handle returned from an asynchronous query execution. |
|
| Partition |
The partition number to retrieve from the result set. |
|
| Debug Request |
Enabling this flag will log out the current request. |
false |