Prerequisites:
- A public certificate and private key pair are required to successfully connect applications with JumpCloud. After you activate an application, we automatically generate a public certificate and private key pair for you. You can use this pair or upload your own.
- To successfully complete the integration between JumpCloud and SnowFlake, you need to use an administrator account in SnowFlake.
Notes:
- After you connect an application to JumpCloud, you can connect it to user groups. Users in the groups you connect can access the application through SAML SSO. Learn how to connect user groups to applications.
Configure the JumpCloud SSO Application
- Access the JumpCloud Administrator Console at https://console.jumpcloud.com.
- Select Applications in the main navigation panel.
- Select the + in the upper left, scroll or search for the application in the 'Configure New Application' side panel, then select 'configure'.
- Optionally, enter SnowFlake for the Display Label. This label will appear under the Service Provider logo within the JumpCloud User Portal.
- Though it's not required, you can upload a service provider application's XML metadata file to populate SAML connector attributes for that application. The attributes populated by the metadata file may vary by the application. To apply a metadata file for the application you're connecting, click Upload Metadata. Navigate to the file you want to upload, then click Open. You'll see a confirmation of a successful upload. Be aware that if you upload more than one metadata file, you'll overwrite the attribute values applied in the previously uploaded file.
- In the IDP Entity ID field, enter
https://YOURDOMAIN.TLD
(e.g.,https://thebestwidgets.com
). - Select Upload IdP Private Key and upload the private.pem file generated according to the above prerequisites.
- Select Upload IdP Certificate and upload the cert.pem file generated according to the above prerequisites.
- In the SP Entity ID field, enter
https://Account_Name.snowflakecomputing.com
, where Account_Name, matches with your Account Name, from Snowflake - In the ACS URL field, enter
https://Account_Name.snowflakecomputing.com
, where Account_Name, matches with your Account Name, from Snowflake - In the field terminating the IdP URL, either leave the default value or enter a plaintext string unique to this connector.
- Select Activate.
Configure the Service Provider
- Log in to your SnowFlake Computing account.
- Click Worksheet.
- Paste this query into the worksheet:
alter account set saml_identity_provider = '{
"certificate": "",
"ssoUrl": "",
"type": "custom"
}';
- Add your certificate (IdP Certificate from JumpCloud) and ssoUrl (IdP URL from JumpCloud) to the query by copying and pasting the code that's between "——BEGIN CERTIFICATE——" and "——END CERTIFICATE——". It should look like this:
alter account set saml_identity_provider = '{
"certificate": "Your certificate",
"ssoUrl": "Your ssoUrl",
"type": "custom"
}';
- Click run.
- Delete the last query, and paste this one into the worksheet:
alter account set sso_login_page = true;
- Click run.
Validate SSO Authentication Workflows
IdP Initiated
- Access the JumpCloud User Console at https://console.jumpcloud.com.
- Select the Service Provider icon.
- This should automatically launch and log in to the application.
SP Initiated
- Navigate to your Service Provider application URL.
- You will be redirected to log in to the JumpCloud User Portal.
- The browser will be redirected back to the application and be automatically logged in.