Strengthened Access with Identity Management
Secure access to your resources with layered identity management, combining username and password authentication, Single Sign-On (SSO), and support for MFA. By integrating solutions like Auth0 and SAML 2.0, you can safeguard against unauthorized access.
ALTER ORGANIZATION vsko SET SSO = ‘{
“signOnUrl”: “https://acme-sso.okta.com/app/acme-sso-acmeappv2prod_1/exkelyi3do0l22FDA4x7/sso/saml”,
“issuer”: “okta”,
“provider”: “okta”,
“Label”: “Okta Company App”,
“fieldMapping”: {
“given_name”: “name”,
“family_name”: “surname”
},
“certificate”: “<certifate>”,
}‘;
Single Sign-On
Firebolt supports Single Sign-On (SSO) for centralized access control, allowing users to authenticate across multiple apps with one set of credentials.
CREATE LOGIN "kate@acme.com" WITH
FIRST_NAME = 'Kate'
LAST_NAME = 'Peterson'
IS_PASSWORD_ENABLED = FALSE
IS_MFA_ENABLED = TRUE;
Multi-Factor Authentication (MFA)
Firebolt's MFA strengthens security by requiring multiple forms of verification for access. Admins can control MFA settings per login, ensuring compliance with industry regulations through centralized management with Okta and Auth0.