AuthenticationPolicy
Examples
Python
authentication_policy = AuthenticationPolicy(
name="some_authentication_policy",
authentication_methods=["PASSWORD", "SAML"],
mfa_authentication_methods=["PASSWORD"],
mfa_enrollment="REQUIRED",
client_types=["SNOWFLAKE_UI"],
security_integrations=["ALL"],
comment="Policy for secure authentication."
)YAML
authentication_policies:
- name: some_authentication_policy
authentication_methods:
- PASSWORD
- SAML
mfa_authentication_methods:
- PASSWORD
mfa_enrollment: REQUIRED
client_types:
- SNOWFLAKE_UI
security_integrations:
- ALL
comment: Policy for secure authentication.Fields
Last updated