- Categories:
System functions (System Control)
SYSTEM$MIGRATE_SAML_IDP_REGISTRATION¶
Migrates an existing SAML identity provider (i.e. IdP) configuration as defined by the account parameter SAML_IDENTITY_PROVIDER to a security integration.
If the account parameter SAML_IDENTITY_PROVIDER is present, SYSTEM$MIGRATE_SAML_IDP_REGISTRATION creates a new security integration using the data in the SAML_IDENTITY_PROVIDER parameter.
If the SAML_IDENTITY_PROVIDER account parameter is not present, the function fails. If this occurs, create a security integration where TYPE = SAML2
as shown in CREATE SECURITY INTEGRATION.
Syntax¶
SYSTEM$MIGRATE_SAML_IDP_REGISTRATION( '<integration_name>', '<issuer>' )
Arguments¶
integration_name
Name of the new SAML2 security integration that will be created by the function.
Note that the entire name must be enclosed in single quotes.
Required.
issuer
The EntityID / Issuer of the IdP.
The entire name must be enclosed in single quotes.
Required if not specified in the SAML_IDENTITY_PROVIDER parameter as the
Issuer
attribute.Important
If the SAML_IDENTITY_PROVIDER parameter does not contain a value for
Issuer
, use your IdP’s metadata to locate the exact value. Depending on the IdP, you might be able to locate theissuer
value through the user interface administrator settings, a URL your IdP provides, or by downloading the SAML federation metadata XML to a local file.As a representative example, the following references detail how to locate the
issuer
value for Okta and Microsoft Entra ID:
Examples¶
The commands below provide an example of how you can migrate an existing IdP configuration:
SELECT SYSTEM$MIGRATE_SAML_IDP_REGISTRATION('my_fed_integration', 'http://my_idp.com');
Output:
+---------------------------------------------------------------------------------+
| SYSTEM$MIGRATE_SAML_IDP_REGISTRATION('MY_FED_INTEGRATION', 'HTTP://MY_IDP.COM') |
+---------------------------------------------------------------------------------+
| SUCCESS : [MY_FED_INTEGRATION] Fed SAML integration created |
+---------------------------------------------------------------------------------+
To view details about your migrated IdP, you can use the DESCRIBE
command:
DESC INTEGRATION my_fed_integration;