Whitelisting Alooma IPs in Snowflake
Abstract
SummaryHow and why to whitelist Alooma's IP addresses within Snowflake.
For Alooma to be able to access your Snowflake account directly, you’ll need to create a new network policy or add us to a network policy where you’ve whitelisted the Alooma IP addresses. You can do this via the management console or via SQL directly.
From the Snowflake management console, click Accounts and then Policies.
Note
You must have ACCOUNTADMIN or SECURITYADMIN privileges.
Click Create a New Network Policy.
Name the policy and then enter the following IP addresses: 52.35.19.31/32, 52.88.52.130/32, 52.26.47.1/32, 52.24.172.83/32 (be sure to separate the IP addresses with commas).
Click Finish.
Whitelisting Alooma IP addresses via SQL
Use the following SQL:
CREATE NETWORK POLICY ALOOMA_WHITELIST ALLOWED_IP_LIST=('52.35.19.31/32','52.88.52.130/32','52.26.47.1/32','52.24.172.83/32') BLOCKED_IP_LIST=() COMMENT='ALOOMA IP ADDRESSES';