Skip to content

Latest commit

 

History

History
1526 lines (958 loc) · 59.1 KB

samlSettings.csharp.md

File metadata and controls

1526 lines (958 loc) · 59.1 KB

samlSettings Submodule

Constructs

SamlSettings

Represents a {@link https://registry.terraform.io/providers/hashicorp/tfe/0.55.0/docs/resources/saml_settings tfe_saml_settings}.

Initializers

using HashiCorp.Cdktf.Providers.Tfe;

new SamlSettings(Construct Scope, string Id, SamlSettingsConfig Config);
Name Type Description
Scope Constructs.Construct The scope in which to define this construct.
Id string The scoped construct ID.
Config SamlSettingsConfig 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".
ResetAttrGroups No description.
ResetAttrSiteAdmin No description.
ResetAttrUsername No description.
ResetAuthnRequestsSigned No description.
ResetCertificate No description.
ResetDebug No description.
ResetPrivateKey No description.
ResetSignatureDigestMethod No description.
ResetSignatureSigningMethod No description.
ResetSiteAdminRole No description.
ResetSsoApiTokenSessionTimeout No description.
ResetTeamManagementEnabled No description.
ResetWantAssertionsSigned 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".


ResetAttrGroups
private void ResetAttrGroups()
ResetAttrSiteAdmin
private void ResetAttrSiteAdmin()
ResetAttrUsername
private void ResetAttrUsername()
ResetAuthnRequestsSigned
private void ResetAuthnRequestsSigned()
ResetCertificate
private void ResetCertificate()
ResetDebug
private void ResetDebug()
ResetPrivateKey
private void ResetPrivateKey()
ResetSignatureDigestMethod
private void ResetSignatureDigestMethod()
ResetSignatureSigningMethod
private void ResetSignatureSigningMethod()
ResetSiteAdminRole
private void ResetSiteAdminRole()
ResetSsoApiTokenSessionTimeout
private void ResetSsoApiTokenSessionTimeout()
ResetTeamManagementEnabled
private void ResetTeamManagementEnabled()
ResetWantAssertionsSigned
private void ResetWantAssertionsSigned()

Static Functions

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

IsConstruct
using HashiCorp.Cdktf.Providers.Tfe;

SamlSettings.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.Tfe;

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

IsTerraformResource
using HashiCorp.Cdktf.Providers.Tfe;

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

GenerateConfigForImport
using HashiCorp.Cdktf.Providers.Tfe;

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

Generates CDKTF code for importing a SamlSettings 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 SamlSettings to import.


ImportFromIdRequired
  • Type: string

The id of the existing SamlSettings that should be imported.

Refer to the {@link https://registry.terraform.io/providers/hashicorp/tfe/0.55.0/docs/resources/saml_settings#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 SamlSettings 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.
AcsConsumerUrl string No description.
Enabled HashiCorp.Cdktf.IResolvable No description.
Id string No description.
MetadataUrl string No description.
OldIdpCert string No description.
AttrGroupsInput string No description.
AttrSiteAdminInput string No description.
AttrUsernameInput string No description.
AuthnRequestsSignedInput object No description.
CertificateInput string No description.
DebugInput object No description.
IdpCertInput string No description.
PrivateKeyInput string No description.
SignatureDigestMethodInput string No description.
SignatureSigningMethodInput string No description.
SiteAdminRoleInput string No description.
SloEndpointUrlInput string No description.
SsoApiTokenSessionTimeoutInput double No description.
SsoEndpointUrlInput string No description.
TeamManagementEnabledInput object No description.
WantAssertionsSignedInput object No description.
AttrGroups string No description.
AttrSiteAdmin string No description.
AttrUsername string No description.
AuthnRequestsSigned object No description.
Certificate string No description.
Debug object No description.
IdpCert string No description.
PrivateKey string No description.
SignatureDigestMethod string No description.
SignatureSigningMethod string No description.
SiteAdminRole string No description.
SloEndpointUrl string No description.
SsoApiTokenSessionTimeout double No description.
SsoEndpointUrl string No description.
TeamManagementEnabled object No description.
WantAssertionsSigned object 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[]

AcsConsumerUrlRequired
public string AcsConsumerUrl { get; }
  • Type: string

EnabledRequired
public IResolvable Enabled { get; }
  • Type: HashiCorp.Cdktf.IResolvable

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

MetadataUrlRequired
public string MetadataUrl { get; }
  • Type: string

OldIdpCertRequired
public string OldIdpCert { get; }
  • Type: string

AttrGroupsInputOptional
public string AttrGroupsInput { get; }
  • Type: string

AttrSiteAdminInputOptional
public string AttrSiteAdminInput { get; }
  • Type: string

AttrUsernameInputOptional
public string AttrUsernameInput { get; }
  • Type: string

AuthnRequestsSignedInputOptional
public object AuthnRequestsSignedInput { get; }
  • Type: object

CertificateInputOptional
public string CertificateInput { get; }
  • Type: string

DebugInputOptional
public object DebugInput { get; }
  • Type: object

IdpCertInputOptional
public string IdpCertInput { get; }
  • Type: string

PrivateKeyInputOptional
public string PrivateKeyInput { get; }
  • Type: string

SignatureDigestMethodInputOptional
public string SignatureDigestMethodInput { get; }
  • Type: string

SignatureSigningMethodInputOptional
public string SignatureSigningMethodInput { get; }
  • Type: string

SiteAdminRoleInputOptional
public string SiteAdminRoleInput { get; }
  • Type: string

SloEndpointUrlInputOptional
public string SloEndpointUrlInput { get; }
  • Type: string

SsoApiTokenSessionTimeoutInputOptional
public double SsoApiTokenSessionTimeoutInput { get; }
  • Type: double

SsoEndpointUrlInputOptional
public string SsoEndpointUrlInput { get; }
  • Type: string

TeamManagementEnabledInputOptional
public object TeamManagementEnabledInput { get; }
  • Type: object

WantAssertionsSignedInputOptional
public object WantAssertionsSignedInput { get; }
  • Type: object

AttrGroupsRequired
public string AttrGroups { get; }
  • Type: string

AttrSiteAdminRequired
public string AttrSiteAdmin { get; }
  • Type: string

AttrUsernameRequired
public string AttrUsername { get; }
  • Type: string

AuthnRequestsSignedRequired
public object AuthnRequestsSigned { get; }
  • Type: object

CertificateRequired
public string Certificate { get; }
  • Type: string

DebugRequired
public object Debug { get; }
  • Type: object

IdpCertRequired
public string IdpCert { get; }
  • Type: string

PrivateKeyRequired
public string PrivateKey { get; }
  • Type: string

SignatureDigestMethodRequired
public string SignatureDigestMethod { get; }
  • Type: string

SignatureSigningMethodRequired
public string SignatureSigningMethod { get; }
  • Type: string

SiteAdminRoleRequired
public string SiteAdminRole { get; }
  • Type: string

SloEndpointUrlRequired
public string SloEndpointUrl { get; }
  • Type: string

SsoApiTokenSessionTimeoutRequired
public double SsoApiTokenSessionTimeout { get; }
  • Type: double

SsoEndpointUrlRequired
public string SsoEndpointUrl { get; }
  • Type: string

TeamManagementEnabledRequired
public object TeamManagementEnabled { get; }
  • Type: object

WantAssertionsSignedRequired
public object WantAssertionsSigned { get; }
  • Type: object

Constants

Name Type Description
TfResourceType string No description.

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

Structs

SamlSettingsConfig

Initializer

using HashiCorp.Cdktf.Providers.Tfe;

new SamlSettingsConfig {
    object Connection = null,
    object Count = null,
    ITerraformDependable[] DependsOn = null,
    ITerraformIterator ForEach = null,
    TerraformResourceLifecycle Lifecycle = null,
    TerraformProvider Provider = null,
    object[] Provisioners = null,
    string IdpCert,
    string SloEndpointUrl,
    string SsoEndpointUrl,
    string AttrGroups = null,
    string AttrSiteAdmin = null,
    string AttrUsername = null,
    object AuthnRequestsSigned = null,
    string Certificate = null,
    object Debug = null,
    string PrivateKey = null,
    string SignatureDigestMethod = null,
    string SignatureSigningMethod = null,
    string SiteAdminRole = null,
    double SsoApiTokenSessionTimeout = null,
    object TeamManagementEnabled = null,
    object WantAssertionsSigned = 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.
IdpCert string Identity Provider Certificate specifies the PEM encoded X.509 Certificate as provided by the IdP configuration.
SloEndpointUrl string Single Log Out URL specifies the HTTPS endpoint on your IdP for single logout requests.
SsoEndpointUrl string Single Sign On URL specifies the HTTPS endpoint on your IdP for single sign-on requests.
AttrGroups string Team Attribute Name specifies the name of the SAML attribute that determines team membership.
AttrSiteAdmin string Specifies the role for site admin access. Overrides the "Site Admin Role" method.
AttrUsername string Username Attribute Name specifies the name of the SAML attribute that determines the user's username.
AuthnRequestsSigned object Ensure that samlp:AuthnRequest messages are signed.
Certificate string The certificate used for request and assertion signing.
Debug object When sign-on fails and this is enabled, the SAMLResponse XML will be displayed on the login page.
PrivateKey string The private key used for request and assertion signing.
SignatureDigestMethod string Signature Digest Method. Must be either SHA1 or SHA256. Defaults to SHA256.
SignatureSigningMethod string Signature Signing Method. Must be either SHA1 or SHA256. Defaults to SHA256.
SiteAdminRole string Specifies the role for site admin access, provided in the list of roles sent in the Team Attribute Name attribute.
SsoApiTokenSessionTimeout double Specifies the Single Sign On session timeout in seconds. Defaults to 14 days.
TeamManagementEnabled object Set it to false if you would rather use Terraform Enterprise to manage team membership.
WantAssertionsSigned object Ensure that saml:Assertion elements are signed.

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[]

IdpCertRequired
public string IdpCert { get; set; }
  • Type: string

Identity Provider Certificate specifies the PEM encoded X.509 Certificate as provided by the IdP configuration.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tfe/0.55.0/docs/resources/saml_settings#idp_cert SamlSettings#idp_cert}


SloEndpointUrlRequired
public string SloEndpointUrl { get; set; }
  • Type: string

Single Log Out URL specifies the HTTPS endpoint on your IdP for single logout requests.

This value is provided by the IdP configuration

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tfe/0.55.0/docs/resources/saml_settings#slo_endpoint_url SamlSettings#slo_endpoint_url}


SsoEndpointUrlRequired
public string SsoEndpointUrl { get; set; }
  • Type: string

Single Sign On URL specifies the HTTPS endpoint on your IdP for single sign-on requests.

This value is provided by the IdP configuration

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tfe/0.55.0/docs/resources/saml_settings#sso_endpoint_url SamlSettings#sso_endpoint_url}


AttrGroupsOptional
public string AttrGroups { get; set; }
  • Type: string

Team Attribute Name specifies the name of the SAML attribute that determines team membership.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tfe/0.55.0/docs/resources/saml_settings#attr_groups SamlSettings#attr_groups}


AttrSiteAdminOptional
public string AttrSiteAdmin { get; set; }
  • Type: string

Specifies the role for site admin access. Overrides the "Site Admin Role" method.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tfe/0.55.0/docs/resources/saml_settings#attr_site_admin SamlSettings#attr_site_admin}


AttrUsernameOptional
public string AttrUsername { get; set; }
  • Type: string

Username Attribute Name specifies the name of the SAML attribute that determines the user's username.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tfe/0.55.0/docs/resources/saml_settings#attr_username SamlSettings#attr_username}


AuthnRequestsSignedOptional
public object AuthnRequestsSigned { get; set; }
  • Type: object

Ensure that samlp:AuthnRequest messages are signed.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tfe/0.55.0/docs/resources/saml_settings#authn_requests_signed SamlSettings#authn_requests_signed}


CertificateOptional
public string Certificate { get; set; }
  • Type: string

The certificate used for request and assertion signing.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tfe/0.55.0/docs/resources/saml_settings#certificate SamlSettings#certificate}


DebugOptional
public object Debug { get; set; }
  • Type: object

When sign-on fails and this is enabled, the SAMLResponse XML will be displayed on the login page.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tfe/0.55.0/docs/resources/saml_settings#debug SamlSettings#debug}


PrivateKeyOptional
public string PrivateKey { get; set; }
  • Type: string

The private key used for request and assertion signing.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tfe/0.55.0/docs/resources/saml_settings#private_key SamlSettings#private_key}


SignatureDigestMethodOptional
public string SignatureDigestMethod { get; set; }
  • Type: string

Signature Digest Method. Must be either SHA1 or SHA256. Defaults to SHA256.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tfe/0.55.0/docs/resources/saml_settings#signature_digest_method SamlSettings#signature_digest_method}


SignatureSigningMethodOptional
public string SignatureSigningMethod { get; set; }
  • Type: string

Signature Signing Method. Must be either SHA1 or SHA256. Defaults to SHA256.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tfe/0.55.0/docs/resources/saml_settings#signature_signing_method SamlSettings#signature_signing_method}


SiteAdminRoleOptional
public string SiteAdminRole { get; set; }
  • Type: string

Specifies the role for site admin access, provided in the list of roles sent in the Team Attribute Name attribute.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tfe/0.55.0/docs/resources/saml_settings#site_admin_role SamlSettings#site_admin_role}


SsoApiTokenSessionTimeoutOptional
public double SsoApiTokenSessionTimeout { get; set; }
  • Type: double

Specifies the Single Sign On session timeout in seconds. Defaults to 14 days.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tfe/0.55.0/docs/resources/saml_settings#sso_api_token_session_timeout SamlSettings#sso_api_token_session_timeout}


TeamManagementEnabledOptional
public object TeamManagementEnabled { get; set; }
  • Type: object

Set it to false if you would rather use Terraform Enterprise to manage team membership.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tfe/0.55.0/docs/resources/saml_settings#team_management_enabled SamlSettings#team_management_enabled}


WantAssertionsSignedOptional
public object WantAssertionsSigned { get; set; }
  • Type: object

Ensure that saml:Assertion elements are signed.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/tfe/0.55.0/docs/resources/saml_settings#want_assertions_signed SamlSettings#want_assertions_signed}