Skip to content

Latest commit

 

History

History
1514 lines (948 loc) · 65.9 KB

samlIntegration.csharp.md

File metadata and controls

1514 lines (948 loc) · 65.9 KB

samlIntegration Submodule

Constructs

SamlIntegration

Represents a {@link https://registry.terraform.io/providers/snowflake-labs/snowflake/0.90.0/docs/resources/saml_integration snowflake_saml_integration}.

Initializers

using HashiCorp.Cdktf.Providers.Snowflake;

new SamlIntegration(Construct Scope, string Id, SamlIntegrationConfig Config);
Name Type Description
Scope Constructs.Construct The scope in which to define this construct.
Id string The scoped construct ID.
Config SamlIntegrationConfig No description.

ScopeRequired
  • Type: Constructs.Construct

The scope in which to define this construct.


IdRequired
  • Type: string

The scoped construct ID.

Must be unique amongst siblings in the same scope


ConfigRequired

Methods

Name Description
ToString Returns a string representation of this construct.
AddOverride No description.
OverrideLogicalId Overrides the auto-generated logical ID with a specific ID.
ResetOverrideLogicalId Resets a previously passed logical Id to use the auto-generated logical id again.
ToHclTerraform No description.
ToMetadata No description.
ToTerraform Adds this resource to the terraform JSON output.
AddMoveTarget Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
GetAnyMapAttribute No description.
GetBooleanAttribute No description.
GetBooleanMapAttribute No description.
GetListAttribute No description.
GetNumberAttribute No description.
GetNumberListAttribute No description.
GetNumberMapAttribute No description.
GetStringAttribute No description.
GetStringMapAttribute No description.
HasResourceMove No description.
ImportFrom No description.
InterpolationForAttribute No description.
MoveFromId Move the resource corresponding to "id" to this resource.
MoveTo Moves this resource to the target resource given by moveTarget.
MoveToId Moves this resource to the resource corresponding to "id".
ResetEnabled No description.
ResetId No description.
ResetSaml2EnableSpInitiated No description.
ResetSaml2ForceAuthn No description.
ResetSaml2PostLogoutRedirectUrl No description.
ResetSaml2RequestedNameidFormat No description.
ResetSaml2SignRequest No description.
ResetSaml2SnowflakeAcsUrl No description.
ResetSaml2SnowflakeIssuerUrl No description.
ResetSaml2SnowflakeX509Cert No description.
ResetSaml2SpInitiatedLoginPageLabel No description.

ToString
private string ToString()

Returns a string representation of this construct.

AddOverride
private void AddOverride(string Path, object Value)
PathRequired
  • Type: string

ValueRequired
  • Type: object

OverrideLogicalId
private void OverrideLogicalId(string NewLogicalId)

Overrides the auto-generated logical ID with a specific ID.

NewLogicalIdRequired
  • Type: string

The new logical ID to use for this stack element.


ResetOverrideLogicalId
private void ResetOverrideLogicalId()

Resets a previously passed logical Id to use the auto-generated logical id again.

ToHclTerraform
private object ToHclTerraform()
ToMetadata
private object ToMetadata()
ToTerraform
private object ToTerraform()

Adds this resource to the terraform JSON output.

AddMoveTarget
private void AddMoveTarget(string MoveTarget)

Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.

MoveTargetRequired
  • Type: string

The string move target that will correspond to this resource.


GetAnyMapAttribute
private System.Collections.Generic.IDictionary<string, object> GetAnyMapAttribute(string TerraformAttribute)
TerraformAttributeRequired
  • Type: string

GetBooleanAttribute
private IResolvable GetBooleanAttribute(string TerraformAttribute)
TerraformAttributeRequired
  • Type: string

GetBooleanMapAttribute
private System.Collections.Generic.IDictionary<string, bool> GetBooleanMapAttribute(string TerraformAttribute)
TerraformAttributeRequired
  • Type: string

GetListAttribute
private string[] GetListAttribute(string TerraformAttribute)
TerraformAttributeRequired
  • Type: string

GetNumberAttribute
private double GetNumberAttribute(string TerraformAttribute)
TerraformAttributeRequired
  • Type: string

GetNumberListAttribute
private double[] GetNumberListAttribute(string TerraformAttribute)
TerraformAttributeRequired
  • Type: string

GetNumberMapAttribute
private System.Collections.Generic.IDictionary<string, double> GetNumberMapAttribute(string TerraformAttribute)
TerraformAttributeRequired
  • Type: string

GetStringAttribute
private string GetStringAttribute(string TerraformAttribute)
TerraformAttributeRequired
  • Type: string

GetStringMapAttribute
private System.Collections.Generic.IDictionary<string, string> GetStringMapAttribute(string TerraformAttribute)
TerraformAttributeRequired
  • Type: string

HasResourceMove
private object HasResourceMove()
ImportFrom
private void ImportFrom(string Id, TerraformProvider Provider = null)
IdRequired
  • Type: string

ProviderOptional
  • Type: HashiCorp.Cdktf.TerraformProvider

InterpolationForAttribute
private IResolvable InterpolationForAttribute(string TerraformAttribute)
TerraformAttributeRequired
  • Type: string

MoveFromId
private void MoveFromId(string Id)

Move the resource corresponding to "id" to this resource.

Note that the resource being moved from must be marked as moved using it's instance function.

IdRequired
  • Type: string

Full id of resource being moved from, e.g. "aws_s3_bucket.example".


MoveTo
private void MoveTo(string MoveTarget, object Index = null)

Moves this resource to the target resource given by moveTarget.

MoveTargetRequired
  • Type: string

The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.


IndexOptional
  • Type: object

Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.


MoveToId
private void MoveToId(string Id)

Moves this resource to the resource corresponding to "id".

IdRequired
  • Type: string

Full id of resource to move to, e.g. "aws_s3_bucket.example".


ResetEnabled
private void ResetEnabled()
ResetId
private void ResetId()
ResetSaml2EnableSpInitiated
private void ResetSaml2EnableSpInitiated()
ResetSaml2ForceAuthn
private void ResetSaml2ForceAuthn()
ResetSaml2PostLogoutRedirectUrl
private void ResetSaml2PostLogoutRedirectUrl()
ResetSaml2RequestedNameidFormat
private void ResetSaml2RequestedNameidFormat()
ResetSaml2SignRequest
private void ResetSaml2SignRequest()
ResetSaml2SnowflakeAcsUrl
private void ResetSaml2SnowflakeAcsUrl()
ResetSaml2SnowflakeIssuerUrl
private void ResetSaml2SnowflakeIssuerUrl()
ResetSaml2SnowflakeX509Cert
private void ResetSaml2SnowflakeX509Cert()
ResetSaml2SpInitiatedLoginPageLabel
private void ResetSaml2SpInitiatedLoginPageLabel()

Static Functions

Name Description
IsConstruct Checks if x is a construct.
IsTerraformElement No description.
IsTerraformResource No description.
GenerateConfigForImport Generates CDKTF code for importing a SamlIntegration resource upon running "cdktf plan ".

IsConstruct
using HashiCorp.Cdktf.Providers.Snowflake;

SamlIntegration.IsConstruct(object X);

Checks if x is a construct.

Use this method instead of instanceof to properly detect Construct instances, even when the construct library is symlinked.

Explanation: in JavaScript, multiple copies of the constructs library on disk are seen as independent, completely different libraries. As a consequence, the class Construct in each copy of the constructs library is seen as a different class, and an instance of one class will not test as instanceof the other class. npm install will not create installations like this, but users may manually symlink construct libraries together or use a monorepo tool: in those cases, multiple copies of the constructs library can be accidentally installed, and instanceof will behave unpredictably. It is safest to avoid using instanceof, and using this type-testing method instead.

XRequired
  • Type: object

Any object.


IsTerraformElement
using HashiCorp.Cdktf.Providers.Snowflake;

SamlIntegration.IsTerraformElement(object X);
XRequired
  • Type: object

IsTerraformResource
using HashiCorp.Cdktf.Providers.Snowflake;

SamlIntegration.IsTerraformResource(object X);
XRequired
  • Type: object

GenerateConfigForImport
using HashiCorp.Cdktf.Providers.Snowflake;

SamlIntegration.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null);

Generates CDKTF code for importing a SamlIntegration resource upon running "cdktf plan ".

ScopeRequired
  • Type: Constructs.Construct

The scope in which to define this construct.


ImportToIdRequired
  • Type: string

The construct id used in the generated config for the SamlIntegration to import.


ImportFromIdRequired
  • Type: string

The id of the existing SamlIntegration that should be imported.

Refer to the {@link https://registry.terraform.io/providers/snowflake-labs/snowflake/0.90.0/docs/resources/saml_integration#import import section} in the documentation of this resource for the id to use


ProviderOptional
  • Type: HashiCorp.Cdktf.TerraformProvider

? Optional instance of the provider where the SamlIntegration to import is found.


Properties

Name Type Description
Node Constructs.Node The tree node.
CdktfStack HashiCorp.Cdktf.TerraformStack No description.
Fqn string No description.
FriendlyUniqueId string No description.
TerraformMetaArguments System.Collections.Generic.IDictionary<string, object> No description.
TerraformResourceType string No description.
TerraformGeneratorMetadata HashiCorp.Cdktf.TerraformProviderGeneratorMetadata No description.
Connection object No description.
Count object No description.
DependsOn string[] No description.
ForEach HashiCorp.Cdktf.ITerraformIterator No description.
Lifecycle HashiCorp.Cdktf.TerraformResourceLifecycle No description.
Provider HashiCorp.Cdktf.TerraformProvider No description.
Provisioners object[] No description.
CreatedOn string No description.
Saml2DigestMethodsUsed string No description.
Saml2SignatureMethodsUsed string No description.
Saml2SnowflakeMetadata string No description.
EnabledInput object No description.
IdInput string No description.
NameInput string No description.
Saml2EnableSpInitiatedInput object No description.
Saml2ForceAuthnInput object No description.
Saml2IssuerInput string No description.
Saml2PostLogoutRedirectUrlInput string No description.
Saml2ProviderInput string No description.
Saml2RequestedNameidFormatInput string No description.
Saml2SignRequestInput object No description.
Saml2SnowflakeAcsUrlInput string No description.
Saml2SnowflakeIssuerUrlInput string No description.
Saml2SnowflakeX509CertInput string No description.
Saml2SpInitiatedLoginPageLabelInput string No description.
Saml2SsoUrlInput string No description.
Saml2X509CertInput string No description.
Enabled object No description.
Id string No description.
Name string No description.
Saml2EnableSpInitiated object No description.
Saml2ForceAuthn object No description.
Saml2Issuer string No description.
Saml2PostLogoutRedirectUrl string No description.
Saml2Provider string No description.
Saml2RequestedNameidFormat string No description.
Saml2SignRequest object No description.
Saml2SnowflakeAcsUrl string No description.
Saml2SnowflakeIssuerUrl string No description.
Saml2SnowflakeX509Cert string No description.
Saml2SpInitiatedLoginPageLabel string No description.
Saml2SsoUrl string No description.
Saml2X509Cert string No description.

NodeRequired
public Node Node { get; }
  • Type: Constructs.Node

The tree node.


CdktfStackRequired
public TerraformStack CdktfStack { get; }
  • Type: HashiCorp.Cdktf.TerraformStack

FqnRequired
public string Fqn { get; }
  • Type: string

FriendlyUniqueIdRequired
public string FriendlyUniqueId { get; }
  • Type: string

TerraformMetaArgumentsRequired
public System.Collections.Generic.IDictionary<string, object> TerraformMetaArguments { get; }
  • Type: System.Collections.Generic.IDictionary<string, object>

TerraformResourceTypeRequired
public string TerraformResourceType { get; }
  • Type: string

TerraformGeneratorMetadataOptional
public TerraformProviderGeneratorMetadata TerraformGeneratorMetadata { get; }
  • Type: HashiCorp.Cdktf.TerraformProviderGeneratorMetadata

ConnectionOptional
public object Connection { get; }
  • Type: object

CountOptional
public object Count { get; }
  • Type: object

DependsOnOptional
public string[] DependsOn { get; }
  • Type: string[]

ForEachOptional
public ITerraformIterator ForEach { get; }
  • Type: HashiCorp.Cdktf.ITerraformIterator

LifecycleOptional
public TerraformResourceLifecycle Lifecycle { get; }
  • Type: HashiCorp.Cdktf.TerraformResourceLifecycle

ProviderOptional
public TerraformProvider Provider { get; }
  • Type: HashiCorp.Cdktf.TerraformProvider

ProvisionersOptional
public object[] Provisioners { get; }
  • Type: object[]

CreatedOnRequired
public string CreatedOn { get; }
  • Type: string

Saml2DigestMethodsUsedRequired
public string Saml2DigestMethodsUsed { get; }
  • Type: string

Saml2SignatureMethodsUsedRequired
public string Saml2SignatureMethodsUsed { get; }
  • Type: string

Saml2SnowflakeMetadataRequired
public string Saml2SnowflakeMetadata { get; }
  • Type: string

EnabledInputOptional
public object EnabledInput { get; }
  • Type: object

IdInputOptional
public string IdInput { get; }
  • Type: string

NameInputOptional
public string NameInput { get; }
  • Type: string

Saml2EnableSpInitiatedInputOptional
public object Saml2EnableSpInitiatedInput { get; }
  • Type: object

Saml2ForceAuthnInputOptional
public object Saml2ForceAuthnInput { get; }
  • Type: object

Saml2IssuerInputOptional
public string Saml2IssuerInput { get; }
  • Type: string

Saml2PostLogoutRedirectUrlInputOptional
public string Saml2PostLogoutRedirectUrlInput { get; }
  • Type: string

Saml2ProviderInputOptional
public string Saml2ProviderInput { get; }
  • Type: string

Saml2RequestedNameidFormatInputOptional
public string Saml2RequestedNameidFormatInput { get; }
  • Type: string

Saml2SignRequestInputOptional
public object Saml2SignRequestInput { get; }
  • Type: object

Saml2SnowflakeAcsUrlInputOptional
public string Saml2SnowflakeAcsUrlInput { get; }
  • Type: string

Saml2SnowflakeIssuerUrlInputOptional
public string Saml2SnowflakeIssuerUrlInput { get; }
  • Type: string

Saml2SnowflakeX509CertInputOptional
public string Saml2SnowflakeX509CertInput { get; }
  • Type: string

Saml2SpInitiatedLoginPageLabelInputOptional
public string Saml2SpInitiatedLoginPageLabelInput { get; }
  • Type: string

Saml2SsoUrlInputOptional
public string Saml2SsoUrlInput { get; }
  • Type: string

Saml2X509CertInputOptional
public string Saml2X509CertInput { get; }
  • Type: string

EnabledRequired
public object Enabled { get; }
  • Type: object

IdRequired
public string Id { get; }
  • Type: string

NameRequired
public string Name { get; }
  • Type: string

Saml2EnableSpInitiatedRequired
public object Saml2EnableSpInitiated { get; }
  • Type: object

Saml2ForceAuthnRequired
public object Saml2ForceAuthn { get; }
  • Type: object

Saml2IssuerRequired
public string Saml2Issuer { get; }
  • Type: string

Saml2PostLogoutRedirectUrlRequired
public string Saml2PostLogoutRedirectUrl { get; }
  • Type: string

Saml2ProviderRequired
public string Saml2Provider { get; }
  • Type: string

Saml2RequestedNameidFormatRequired
public string Saml2RequestedNameidFormat { get; }
  • Type: string

Saml2SignRequestRequired
public object Saml2SignRequest { get; }
  • Type: object

Saml2SnowflakeAcsUrlRequired
public string Saml2SnowflakeAcsUrl { get; }
  • Type: string

Saml2SnowflakeIssuerUrlRequired
public string Saml2SnowflakeIssuerUrl { get; }
  • Type: string

Saml2SnowflakeX509CertRequired
public string Saml2SnowflakeX509Cert { get; }
  • Type: string

Saml2SpInitiatedLoginPageLabelRequired
public string Saml2SpInitiatedLoginPageLabel { get; }
  • Type: string

Saml2SsoUrlRequired
public string Saml2SsoUrl { get; }
  • Type: string

Saml2X509CertRequired
public string Saml2X509Cert { get; }
  • Type: string

Constants

Name Type Description
TfResourceType string No description.

TfResourceTypeRequired
public string TfResourceType { get; }
  • Type: string

Structs

SamlIntegrationConfig

Initializer

using HashiCorp.Cdktf.Providers.Snowflake;

new SamlIntegrationConfig {
    object Connection = null,
    object Count = null,
    ITerraformDependable[] DependsOn = null,
    ITerraformIterator ForEach = null,
    TerraformResourceLifecycle Lifecycle = null,
    TerraformProvider Provider = null,
    object[] Provisioners = null,
    string Name,
    string Saml2Issuer,
    string Saml2Provider,
    string Saml2SsoUrl,
    string Saml2X509Cert,
    object Enabled = null,
    string Id = null,
    object Saml2EnableSpInitiated = null,
    object Saml2ForceAuthn = null,
    string Saml2PostLogoutRedirectUrl = null,
    string Saml2RequestedNameidFormat = null,
    object Saml2SignRequest = null,
    string Saml2SnowflakeAcsUrl = null,
    string Saml2SnowflakeIssuerUrl = null,
    string Saml2SnowflakeX509Cert = null,
    string Saml2SpInitiatedLoginPageLabel = null
};

Properties

Name Type Description
Connection object No description.
Count object No description.
DependsOn HashiCorp.Cdktf.ITerraformDependable[] No description.
ForEach HashiCorp.Cdktf.ITerraformIterator No description.
Lifecycle HashiCorp.Cdktf.TerraformResourceLifecycle No description.
Provider HashiCorp.Cdktf.TerraformProvider No description.
Provisioners object[] No description.
Name string Specifies the name of the SAML2 integration.
Saml2Issuer string The string containing the IdP EntityID / Issuer.
Saml2Provider string The string describing the IdP. One of the following: OKTA, ADFS, Custom.
Saml2SsoUrl string The string containing the IdP SSO URL, where the user should be redirected by Snowflake (the Service Provider) with a SAML AuthnRequest message.
Saml2X509Cert string The Base64 encoded IdP signing certificate on a single line without the leading -----BEGIN CERTIFICATE----- and ending -----END CERTIFICATE----- markers.
Enabled object Specifies whether this security integration is enabled or disabled.
Id string Docs at Terraform Registry: {@link https://registry.terraform.io/providers/snowflake-labs/snowflake/0.90.0/docs/resources/saml_integration#id SamlIntegration#id}.
Saml2EnableSpInitiated object The Boolean indicating if the Log In With button will be shown on the login page.
Saml2ForceAuthn object The Boolean indicating whether users, during the initial authentication flow, are forced to authenticate again to access Snowflake.
Saml2PostLogoutRedirectUrl string The endpoint to which Snowflake redirects users after clicking the Log Out button in the classic Snowflake web interface.
Saml2RequestedNameidFormat string The SAML NameID format allows Snowflake to set an expectation of the identifying attribute of the user (i.e. SAML Subject) in the SAML assertion from the IdP to ensure a valid authentication to Snowflake. If a value is not specified, Snowflake sends the urn:oasis:names:tc:SAML:1.1:nameid-format:emailAddress value in the authentication request to the IdP. NameID must be one of the following values: urn:oasis:names:tc:SAML:1.1:nameid-format:unspecified, urn:oasis:names:tc:SAML:1.1:nameid-format:emailAddress, urn:oasis:names:tc:SAML:1.1:nameid-format:X509SubjectName, urn:oasis:names:tc:SAML:1.1:nameid-format:WindowsDomainQualifiedName, urn:oasis:names:tc:SAML:2.0:nameid-format:kerberos, urn:oasis:names:tc:SAML:2.0:nameid-format:persistent, urn:oasis:names:tc:SAML:2.0:nameid-format:transient .
Saml2SignRequest object The Boolean indicating whether SAML requests are signed.
Saml2SnowflakeAcsUrl string The string containing the Snowflake Assertion Consumer Service URL to which the IdP will send its SAML authentication response back to Snowflake.
Saml2SnowflakeIssuerUrl string The string containing the EntityID / Issuer for the Snowflake service provider.
Saml2SnowflakeX509Cert string The Base64 encoded self-signed certificate generated by Snowflake for use with Encrypting SAML Assertions and Signed SAML Requests.
Saml2SpInitiatedLoginPageLabel string The string containing the label to display after the Log In With button on the login page.

ConnectionOptional
public object Connection { get; set; }
  • Type: object

CountOptional
public object Count { get; set; }
  • Type: object

DependsOnOptional
public ITerraformDependable[] DependsOn { get; set; }
  • Type: HashiCorp.Cdktf.ITerraformDependable[]

ForEachOptional
public ITerraformIterator ForEach { get; set; }
  • Type: HashiCorp.Cdktf.ITerraformIterator

LifecycleOptional
public TerraformResourceLifecycle Lifecycle { get; set; }
  • Type: HashiCorp.Cdktf.TerraformResourceLifecycle

ProviderOptional
public TerraformProvider Provider { get; set; }
  • Type: HashiCorp.Cdktf.TerraformProvider

ProvisionersOptional
public object[] Provisioners { get; set; }
  • Type: object[]

NameRequired
public string Name { get; set; }
  • Type: string

Specifies the name of the SAML2 integration.

This name follows the rules for Object Identifiers. The name should be unique among security integrations in your account.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/snowflake-labs/snowflake/0.90.0/docs/resources/saml_integration#name SamlIntegration#name}


Saml2IssuerRequired
public string Saml2Issuer { get; set; }
  • Type: string

The string containing the IdP EntityID / Issuer.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/snowflake-labs/snowflake/0.90.0/docs/resources/saml_integration#saml2_issuer SamlIntegration#saml2_issuer}


Saml2ProviderRequired
public string Saml2Provider { get; set; }
  • Type: string

The string describing the IdP. One of the following: OKTA, ADFS, Custom.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/snowflake-labs/snowflake/0.90.0/docs/resources/saml_integration#saml2_provider SamlIntegration#saml2_provider}


Saml2SsoUrlRequired
public string Saml2SsoUrl { get; set; }
  • Type: string

The string containing the IdP SSO URL, where the user should be redirected by Snowflake (the Service Provider) with a SAML AuthnRequest message.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/snowflake-labs/snowflake/0.90.0/docs/resources/saml_integration#saml2_sso_url SamlIntegration#saml2_sso_url}


Saml2X509CertRequired
public string Saml2X509Cert { get; set; }
  • Type: string

The Base64 encoded IdP signing certificate on a single line without the leading -----BEGIN CERTIFICATE----- and ending -----END CERTIFICATE----- markers.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/snowflake-labs/snowflake/0.90.0/docs/resources/saml_integration#saml2_x509_cert SamlIntegration#saml2_x509_cert}


EnabledOptional
public object Enabled { get; set; }
  • Type: object

Specifies whether this security integration is enabled or disabled.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/snowflake-labs/snowflake/0.90.0/docs/resources/saml_integration#enabled SamlIntegration#enabled}


IdOptional
public string Id { get; set; }
  • Type: string

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/snowflake-labs/snowflake/0.90.0/docs/resources/saml_integration#id SamlIntegration#id}.

Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable.


Saml2EnableSpInitiatedOptional
public object Saml2EnableSpInitiated { get; set; }
  • Type: object

The Boolean indicating if the Log In With button will be shown on the login page.

TRUE: displays the Log in WIth button on the login page. FALSE: does not display the Log in With button on the login page.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/snowflake-labs/snowflake/0.90.0/docs/resources/saml_integration#saml2_enable_sp_initiated SamlIntegration#saml2_enable_sp_initiated}


Saml2ForceAuthnOptional
public object Saml2ForceAuthn { get; set; }
  • Type: object

The Boolean indicating whether users, during the initial authentication flow, are forced to authenticate again to access Snowflake.

When set to TRUE, Snowflake sets the ForceAuthn SAML parameter to TRUE in the outgoing request from Snowflake to the identity provider. TRUE: forces users to authenticate again to access Snowflake, even if a valid session with the identity provider exists. FALSE: does not force users to authenticate again to access Snowflake.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/snowflake-labs/snowflake/0.90.0/docs/resources/saml_integration#saml2_force_authn SamlIntegration#saml2_force_authn}


Saml2PostLogoutRedirectUrlOptional
public string Saml2PostLogoutRedirectUrl { get; set; }
  • Type: string

The endpoint to which Snowflake redirects users after clicking the Log Out button in the classic Snowflake web interface.

Snowflake terminates the Snowflake session upon redirecting to the specified endpoint.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/snowflake-labs/snowflake/0.90.0/docs/resources/saml_integration#saml2_post_logout_redirect_url SamlIntegration#saml2_post_logout_redirect_url}


Saml2RequestedNameidFormatOptional
public string Saml2RequestedNameidFormat { get; set; }
  • Type: string

The SAML NameID format allows Snowflake to set an expectation of the identifying attribute of the user (i.e. SAML Subject) in the SAML assertion from the IdP to ensure a valid authentication to Snowflake. If a value is not specified, Snowflake sends the urn:oasis:names:tc:SAML:1.1:nameid-format:emailAddress value in the authentication request to the IdP. NameID must be one of the following values: urn:oasis:names:tc:SAML:1.1:nameid-format:unspecified, urn:oasis:names:tc:SAML:1.1:nameid-format:emailAddress, urn:oasis:names:tc:SAML:1.1:nameid-format:X509SubjectName, urn:oasis:names:tc:SAML:1.1:nameid-format:WindowsDomainQualifiedName, urn:oasis:names:tc:SAML:2.0:nameid-format:kerberos, urn:oasis:names:tc:SAML:2.0:nameid-format:persistent, urn:oasis:names:tc:SAML:2.0:nameid-format:transient .

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/snowflake-labs/snowflake/0.90.0/docs/resources/saml_integration#saml2_requested_nameid_format SamlIntegration#saml2_requested_nameid_format}


Saml2SignRequestOptional
public object Saml2SignRequest { get; set; }
  • Type: object

The Boolean indicating whether SAML requests are signed.

TRUE: allows SAML requests to be signed. FALSE: does not allow SAML requests to be signed.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/snowflake-labs/snowflake/0.90.0/docs/resources/saml_integration#saml2_sign_request SamlIntegration#saml2_sign_request}


Saml2SnowflakeAcsUrlOptional
public string Saml2SnowflakeAcsUrl { get; set; }
  • Type: string

The string containing the Snowflake Assertion Consumer Service URL to which the IdP will send its SAML authentication response back to Snowflake.

This property will be set in the SAML authentication request generated by Snowflake when initiating a SAML SSO operation with the IdP. If an incorrect value is specified, Snowflake returns an error message indicating the acceptable values to use. Default: https://<account_locator>..snowflakecomputing.com/fed/login

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/snowflake-labs/snowflake/0.90.0/docs/resources/saml_integration#saml2_snowflake_acs_url SamlIntegration#saml2_snowflake_acs_url}


Saml2SnowflakeIssuerUrlOptional
public string Saml2SnowflakeIssuerUrl { get; set; }
  • Type: string

The string containing the EntityID / Issuer for the Snowflake service provider.

If an incorrect value is specified, Snowflake returns an error message indicating the acceptable values to use.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/snowflake-labs/snowflake/0.90.0/docs/resources/saml_integration#saml2_snowflake_issuer_url SamlIntegration#saml2_snowflake_issuer_url}


Saml2SnowflakeX509CertOptional
public string Saml2SnowflakeX509Cert { get; set; }
  • Type: string

The Base64 encoded self-signed certificate generated by Snowflake for use with Encrypting SAML Assertions and Signed SAML Requests.

You must have at least one of these features (encrypted SAML assertions or signed SAML responses) enabled in your Snowflake account to access the certificate value.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/snowflake-labs/snowflake/0.90.0/docs/resources/saml_integration#saml2_snowflake_x509_cert SamlIntegration#saml2_snowflake_x509_cert}


Saml2SpInitiatedLoginPageLabelOptional
public string Saml2SpInitiatedLoginPageLabel { get; set; }
  • Type: string

The string containing the label to display after the Log In With button on the login page.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/snowflake-labs/snowflake/0.90.0/docs/resources/saml_integration#saml2_sp_initiated_login_page_label SamlIntegration#saml2_sp_initiated_login_page_label}