1. Create a SCIM integration in Snowflake
Follow the Snowflake documentation for creating custom SCIM integrations.2. Enable provisioning In Opal
Edit the Snowflake app in Opal, and toggle on Push Snowflake user to connection.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
USE ROLE ACCOUNTADMIN;
CREATE OR REPLACE SECURITY INTEGRATION OPAL_SCIM_PROVISIONING
type=scim
scim_client='generic'
run_as_role='OPALSERVICE';
-- Allow Opal to create users.
GRANT CREATE USER ON ACCOUNT TO ROLE OPALSERVICE;
-- Allow Opal to create API tokens through the SCIM integration.
GRANT OWNERSHIP ON INTEGRATION "OPAL_SCIM_PROVISIONING" TO ROLE "OPALSERVICE" REVOKE CURRENT GRANTS;

Was this page helpful?