Snowflake Telemetry Integration
1. Create Permissions in Snowflake
CREATE WAREHOUSE IF NOT EXISTS finout_warehouse WITH WAREHOUSE_SIZE = 'XSMALL' AUTO_SUSPEND = 30 INITIALLY_SUSPENDED = TRUE; CREATE ROLE finout_role; CREATE USER finout_user DEFAULT_ROLE = finout_role; GRANT USAGE ON WAREHOUSE finout_warehouse TO ROLE finout_role; GRANT ROLE finout_role TO USER finout_user; GRANT IMPORTED PRIVILEGES ON DATABASE snowflake TO ROLE finout_role; CREATE OR REPLACE NETWORK POLICY FINOUT_NETWORK_POLICY ALLOWED_IP_LIST = ( '34.196.241.137', '212.59.64.84', '54.163.113.82', '44.196.75.137' ); ALTER USER finout_user SET NETWORK_POLICY = FINOUT_NETWORK_POLICY;
2. Set Up Key‑Pair Authentication
3. Grant Access to the KPI / Metric Table
4. Share Snowflake Access Details with Finout
Last updated
Was this helpful?