Prerequisites
Before you begin, ensure you have:- A Snowflake account with a user who has the
securityadminandsysadminroles. (To check, runSHOW GRANTS TO USER <your_username>;and review therolecolumn.) - Administrative access to your Vero account.
Overview
To set up Snowflake as a data destination, you’ll need to:- Contact Vero support to request your public key.
- Create a role, user, warehouse, and database in Snowflake.
- Grant schema permissions.
- Configure your Snowflake network policy (if applicable).
- Provide your connection details to Vero support.
- Vero support will complete the connection and confirm.
Step 1: Contact Vero support to request your public key
Before configuring Snowflake, contact support@getvero.com to request an RSA public key. This key will be used to authenticate the data transfer user you create in the next step. You will receive a public key string loosely resembling the format:-----BEGIN PUBLIC KEY----- and -----END PUBLIC KEY----- tags when adding the key to Snowflake.
Step 2: Create a role, user, warehouse, and database in Snowflake
Review the following setup script. Replace theRSA_PUBLIC_KEY value with the public key provided by Vero support in Step 1.
Statement executed successfully in the query results.
Using an existing warehouse or database? You can change thewarehouse_nameordatabase_namevariables to reference your existing resources instead of creating new ones. Ensure the transfer role is grantedUSAGEon the existing warehouse, andCREATE SCHEMA,MONITOR, andUSAGEon the existing database.
Step 3: Grant schema permissions
Vero will write data to a schema namedVERO in the target database. This schema will be created automatically during the initial connection, using the permissions granted in the script above.
If you prefer to create the schema ahead of time, you may remove the CREATE SCHEMA permission from the script in Step 2 and instead run the following:
Step 4: Configure your Snowflake network policy
If your Snowflake account uses network policies, you must allowlist the data syncing service’s static IP address.- Check for existing network policies:
- If no policies exist (the query returns no results), you can skip to Step 5.
- If policies exist, alter the existing policy or create a new one to allowlist the following IP address:
Important: If you have no existing network policies and you create your first as part of this step, all other IPs outside of the ALLOWED_IP_LIST will be blocked. Be careful when setting your first network policy.
Step 5: Provide your connection details to Vero support
Once you have completed the setup steps above, reply to Vero support with the following details:- Host: Your Snowflake account host (e.g.,
abc12345.us-east-1.snowflakecomputing.com). - Port: Your Snowflake port (default is
443). - Database: The database name (e.g.,
TRANSFER_DATABASE). - User name: The user name (e.g.,
TRANSFER_USER).
- You have set the RSA public key on the transfer user.
- Your network policy allows the IP address
35.192.85.117/32(or that you have no network policies in place).
Step 6: Vero support completes the connection
Vero support will use the details you provide to complete the connection setup. Once done, we will confirm that we were able to connect and write data to your Snowflake instance. At this point:- Prequel.co will perform a full data sync to your Snowflake database.
- After the initial sync, updates will be synced periodically.
- You can view the synced tables in your Snowflake console.
- Allow up to 24 hours for the initial full data sync to complete.
Supported data
For a detailed list of the tables Vero will create and the data synced in each table, refer to the Exporting data to a data destination help article.Securing your connection
- Authentication uses RSA key-pair authentication. No passwords are shared or stored.
- The transfer role only has access to the specific warehouse, database, and schema you configure.
- You maintain full control over your data in Snowflake.
- You can revoke access at any time by removing the transfer user or its permissions.
- All data is transmitted securely using industry-standard encryption.
Permissions checklist
The following is a summary of the minimum permissions required:- Warehouse:
USAGEon the target warehouse. - Database:
CREATE SCHEMA,MONITOR, andUSAGEon the target database (orUSAGEon the database andALL PRIVILEGESon theVEROschema, if pre-created). - User:
RSA_PUBLIC_KEYset, withDEFAULT_ROLEandDEFAULT_WAREHOUSEconfigured. - Network policy (if applicable):
35.192.85.117/32allowlisted.
FAQs
What is Prequel?
Prequel is the trusted vendor used by Vero to ETL data to our customers’ data warehouses. Prequel is a market leader in the industry and trusted by businesses such as LaunchDarkly, Zuora, Gong, Webflow, Drata and more.How often does data sync?
Prequel.co performs a full data sync when your connection is first established, and thereafter syncs updates periodically.How is the Snowflake connection secured?
Vero uses RSA key-pair authentication. You register a public key on a Snowflake user and Vero authenticates using the corresponding private key, so no password is shared or stored. You can also enforce Snowflake network policies to allowlist the data syncing service’s IP.Can I use an existing warehouse?
Yes. Update thewarehouse_name variable in the setup script to reference your existing warehouse. Ensure USAGE is granted on that warehouse to the transfer role.
Can I sync to multiple databases?
Yes, you can create multiple Snowflake data connections, each pointing to different databases or projects.What happens if the connection fails?
If the connection fails, Vero will retry automatically. You can also contact Vero support to check the connection status.Can I delete synced data from Snowflake?
Yes, you have full control over the data in your Snowflake instance. However, because this is a sync connection, any tables you delete will be recreated during the next sync cycle. If you need to delete data and prevent it from being recreated, contact support to adjust your sync configuration. If you’ve deleted data and need it restored, you can request a full sync from Vero support.Do I need to include the BEGIN/END PUBLIC KEY tags?
No. When adding the public key to Snowflake, only provide the raw key string without the-----BEGIN PUBLIC KEY----- and -----END PUBLIC KEY----- tags.
