Saml
Creates a SAML Identity Provider.
This resource allows you to create and configure a SAML Identity Provider.
Example Usage
using Pulumi;
using Okta = Pulumi.Okta;
class MyStack : Stack
{
public MyStack()
{
var example = new Okta.Idp.Saml("example", new Okta.Idp.SamlArgs
{
AcsBinding = "HTTP-POST",
AcsType = "INSTANCE",
Issuer = "https://idp.example.com",
Kid = okta_idp_saml_key.Test.Id,
RequestSignatureScope = "REQUEST",
ResponseSignatureScope = "ANY",
SsoBinding = "HTTP-POST",
SsoDestination = "https://idp.example.com",
SsoUrl = "https://idp.example.com",
UsernameTemplate = "idpuser.email",
});
}
}
Coming soon!
import pulumi
import pulumi_okta as okta
example = okta.idp.Saml("example",
acs_binding="HTTP-POST",
acs_type="INSTANCE",
issuer="https://idp.example.com",
kid=okta_idp_saml_key["test"]["id"],
request_signature_scope="REQUEST",
response_signature_scope="ANY",
sso_binding="HTTP-POST",
sso_destination="https://idp.example.com",
sso_url="https://idp.example.com",
username_template="idpuser.email")import * as pulumi from "@pulumi/pulumi";
import * as okta from "@pulumi/okta";
const example = new okta.idp.Saml("example", {
acsBinding: "HTTP-POST",
acsType: "INSTANCE",
issuer: "https://idp.example.com",
kid: okta_idp_saml_key_test.id,
requestSignatureScope: "REQUEST",
responseSignatureScope: "ANY",
ssoBinding: "HTTP-POST",
ssoDestination: "https://idp.example.com",
ssoUrl: "https://idp.example.com",
usernameTemplate: "idpuser.email",
});Create a Saml Resource
new Saml(name: string, args: SamlArgs, opts?: CustomResourceOptions);def Saml(resource_name, opts=None, account_link_action=None, account_link_group_includes=None, acs_binding=None, acs_type=None, deprovisioned_action=None, groups_action=None, groups_assignments=None, groups_attribute=None, groups_filters=None, issuer=None, issuer_mode=None, kid=None, name=None, name_format=None, profile_master=None, provisioning_action=None, request_signature_algorithm=None, request_signature_scope=None, response_signature_algorithm=None, response_signature_scope=None, sso_binding=None, sso_destination=None, sso_url=None, status=None, subject_filter=None, subject_formats=None, subject_match_attribute=None, subject_match_type=None, suspended_action=None, username_template=None, __props__=None);public Saml(string name, SamlArgs args, CustomResourceOptions? opts = null)- name string
- The unique name of the resource.
- args SamlArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- opts ResourceOptions
- A bag of options that control this resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args SamlArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SamlArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
Saml Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.
Inputs
The Saml resource accepts the following input properties:
- Acs
Binding string The method of making an ACS request. It can be set to
"HTTP-POST"or"HTTP-REDIRECT".- Issuer string
URI that identifies the issuer.
- Kid string
The ID of the signing key.
- Sso
Url string URL of binding-specific endpoint to send an AuthnRequest message to IdP.
- Account
Link stringAction Specifies the account linking action for an IdP user.
- Account
Link List<string>Group Includes Group memberships to determine link candidates.
- Acs
Type string The type of ACS. It can be
"INSTANCE"or"ORG".- Deprovisioned
Action string Action for a previously deprovisioned IdP user during authentication. Can be
"NONE"or"REACTIVATE".- Groups
Action string Provisioning action for IdP user’s group memberships. It can be
"NONE","SYNC","APPEND", or"ASSIGN".- Groups
Assignments List<string> List of Okta Group IDs to add an IdP user as a member with the
"ASSIGN"groups_action.- Groups
Attribute string IdP user profile attribute name (case-insensitive) for an array value that contains group memberships.
- Groups
Filters List<string> Whitelist of Okta Group identifiers that are allowed for the
"APPEND"or"SYNC"groups_action.- Issuer
Mode string Indicates whether Okta uses the original Okta org domain URL, or a custom domain URL. It can be
"ORG_URL"or"CUSTOM_URL".- Name string
The Application’s display name.
- Name
Format string The name identifier format to use. By default
"urn:oasis:names:tc:SAML:1.1:nameid-format:unspecified".- Profile
Master bool Determines if the IdP should act as a source of truth for user profile attributes.
- Provisioning
Action string Provisioning action for an IdP user during authentication.
- Request
Signature stringAlgorithm The XML digital signature algorithm used when signing an AuthnRequest message.
- Request
Signature stringScope Specifies whether or not to digitally sign an AuthnRequest messages to the IdP. It can be
"REQUEST"or"NONE".- Response
Signature stringAlgorithm The minimum XML digital signature algorithm allowed when verifying a SAMLResponse message or Assertion element.
- Response
Signature stringScope Specifies whether to verify a SAMLResponse message or Assertion element XML digital signature. It can be
"RESPONSE","ASSERTION", or"ANY".- Sso
Binding string The method of making an SSO request. It can be set to
"HTTP-POST"or"HTTP-REDIRECT".- Sso
Destination string URI reference indicating the address to which the AuthnRequest message is sent.
- Status string
Status of the IdP.
- Subject
Filter string Optional regular expression pattern used to filter untrusted IdP usernames.
- Subject
Formats List<string> The name formate. By default
"urn:oasis:names:tc:SAML:1.1:nameid-format:unspecified".- Subject
Match stringAttribute Okta user profile attribute for matching transformed IdP username. Only for matchType
"CUSTOM_ATTRIBUTE".- Subject
Match stringType Determines the Okta user profile attribute match conditions for account linking and authentication of the transformed IdP username. By default it is set to
"USERNAME". It can be set to"USERNAME","EMAIL","USERNAME_OR_EMAIL"or"CUSTOM_ATTRIBUTE".- Suspended
Action string Action for a previously suspended IdP user during authentication. Can be set to
"NONE"or"UNSUSPEND"- Username
Template string Okta EL Expression to generate or transform a unique username for the IdP user.
- Acs
Binding string The method of making an ACS request. It can be set to
"HTTP-POST"or"HTTP-REDIRECT".- Issuer string
URI that identifies the issuer.
- Kid string
The ID of the signing key.
- Sso
Url string URL of binding-specific endpoint to send an AuthnRequest message to IdP.
- Account
Link stringAction Specifies the account linking action for an IdP user.
- Account
Link []stringGroup Includes Group memberships to determine link candidates.
- Acs
Type string The type of ACS. It can be
"INSTANCE"or"ORG".- Deprovisioned
Action string Action for a previously deprovisioned IdP user during authentication. Can be
"NONE"or"REACTIVATE".- Groups
Action string Provisioning action for IdP user’s group memberships. It can be
"NONE","SYNC","APPEND", or"ASSIGN".- Groups
Assignments []string List of Okta Group IDs to add an IdP user as a member with the
"ASSIGN"groups_action.- Groups
Attribute string IdP user profile attribute name (case-insensitive) for an array value that contains group memberships.
- Groups
Filters []string Whitelist of Okta Group identifiers that are allowed for the
"APPEND"or"SYNC"groups_action.- Issuer
Mode string Indicates whether Okta uses the original Okta org domain URL, or a custom domain URL. It can be
"ORG_URL"or"CUSTOM_URL".- Name string
The Application’s display name.
- Name
Format string The name identifier format to use. By default
"urn:oasis:names:tc:SAML:1.1:nameid-format:unspecified".- Profile
Master bool Determines if the IdP should act as a source of truth for user profile attributes.
- Provisioning
Action string Provisioning action for an IdP user during authentication.
- Request
Signature stringAlgorithm The XML digital signature algorithm used when signing an AuthnRequest message.
- Request
Signature stringScope Specifies whether or not to digitally sign an AuthnRequest messages to the IdP. It can be
"REQUEST"or"NONE".- Response
Signature stringAlgorithm The minimum XML digital signature algorithm allowed when verifying a SAMLResponse message or Assertion element.
- Response
Signature stringScope Specifies whether to verify a SAMLResponse message or Assertion element XML digital signature. It can be
"RESPONSE","ASSERTION", or"ANY".- Sso
Binding string The method of making an SSO request. It can be set to
"HTTP-POST"or"HTTP-REDIRECT".- Sso
Destination string URI reference indicating the address to which the AuthnRequest message is sent.
- Status string
Status of the IdP.
- Subject
Filter string Optional regular expression pattern used to filter untrusted IdP usernames.
- Subject
Formats []string The name formate. By default
"urn:oasis:names:tc:SAML:1.1:nameid-format:unspecified".- Subject
Match stringAttribute Okta user profile attribute for matching transformed IdP username. Only for matchType
"CUSTOM_ATTRIBUTE".- Subject
Match stringType Determines the Okta user profile attribute match conditions for account linking and authentication of the transformed IdP username. By default it is set to
"USERNAME". It can be set to"USERNAME","EMAIL","USERNAME_OR_EMAIL"or"CUSTOM_ATTRIBUTE".- Suspended
Action string Action for a previously suspended IdP user during authentication. Can be set to
"NONE"or"UNSUSPEND"- Username
Template string Okta EL Expression to generate or transform a unique username for the IdP user.
- acs
Binding string The method of making an ACS request. It can be set to
"HTTP-POST"or"HTTP-REDIRECT".- issuer string
URI that identifies the issuer.
- kid string
The ID of the signing key.
- sso
Url string URL of binding-specific endpoint to send an AuthnRequest message to IdP.
- account
Link stringAction Specifies the account linking action for an IdP user.
- account
Link string[]Group Includes Group memberships to determine link candidates.
- acs
Type string The type of ACS. It can be
"INSTANCE"or"ORG".- deprovisioned
Action string Action for a previously deprovisioned IdP user during authentication. Can be
"NONE"or"REACTIVATE".- groups
Action string Provisioning action for IdP user’s group memberships. It can be
"NONE","SYNC","APPEND", or"ASSIGN".- groups
Assignments string[] List of Okta Group IDs to add an IdP user as a member with the
"ASSIGN"groups_action.- groups
Attribute string IdP user profile attribute name (case-insensitive) for an array value that contains group memberships.
- groups
Filters string[] Whitelist of Okta Group identifiers that are allowed for the
"APPEND"or"SYNC"groups_action.- issuer
Mode string Indicates whether Okta uses the original Okta org domain URL, or a custom domain URL. It can be
"ORG_URL"or"CUSTOM_URL".- name string
The Application’s display name.
- name
Format string The name identifier format to use. By default
"urn:oasis:names:tc:SAML:1.1:nameid-format:unspecified".- profile
Master boolean Determines if the IdP should act as a source of truth for user profile attributes.
- provisioning
Action string Provisioning action for an IdP user during authentication.
- request
Signature stringAlgorithm The XML digital signature algorithm used when signing an AuthnRequest message.
- request
Signature stringScope Specifies whether or not to digitally sign an AuthnRequest messages to the IdP. It can be
"REQUEST"or"NONE".- response
Signature stringAlgorithm The minimum XML digital signature algorithm allowed when verifying a SAMLResponse message or Assertion element.
- response
Signature stringScope Specifies whether to verify a SAMLResponse message or Assertion element XML digital signature. It can be
"RESPONSE","ASSERTION", or"ANY".- sso
Binding string The method of making an SSO request. It can be set to
"HTTP-POST"or"HTTP-REDIRECT".- sso
Destination string URI reference indicating the address to which the AuthnRequest message is sent.
- status string
Status of the IdP.
- subject
Filter string Optional regular expression pattern used to filter untrusted IdP usernames.
- subject
Formats string[] The name formate. By default
"urn:oasis:names:tc:SAML:1.1:nameid-format:unspecified".- subject
Match stringAttribute Okta user profile attribute for matching transformed IdP username. Only for matchType
"CUSTOM_ATTRIBUTE".- subject
Match stringType Determines the Okta user profile attribute match conditions for account linking and authentication of the transformed IdP username. By default it is set to
"USERNAME". It can be set to"USERNAME","EMAIL","USERNAME_OR_EMAIL"or"CUSTOM_ATTRIBUTE".- suspended
Action string Action for a previously suspended IdP user during authentication. Can be set to
"NONE"or"UNSUSPEND"- username
Template string Okta EL Expression to generate or transform a unique username for the IdP user.
- acs_
binding str The method of making an ACS request. It can be set to
"HTTP-POST"or"HTTP-REDIRECT".- issuer str
URI that identifies the issuer.
- kid str
The ID of the signing key.
- sso_
url str URL of binding-specific endpoint to send an AuthnRequest message to IdP.
- account_
link_ straction Specifies the account linking action for an IdP user.
- account_
link_ List[str]group_ includes Group memberships to determine link candidates.
- acs_
type str The type of ACS. It can be
"INSTANCE"or"ORG".- deprovisioned_
action str Action for a previously deprovisioned IdP user during authentication. Can be
"NONE"or"REACTIVATE".- groups_
action str Provisioning action for IdP user’s group memberships. It can be
"NONE","SYNC","APPEND", or"ASSIGN".- groups_
assignments List[str] List of Okta Group IDs to add an IdP user as a member with the
"ASSIGN"groups_action.- groups_
attribute str IdP user profile attribute name (case-insensitive) for an array value that contains group memberships.
- groups_
filters List[str] Whitelist of Okta Group identifiers that are allowed for the
"APPEND"or"SYNC"groups_action.- issuer_
mode str Indicates whether Okta uses the original Okta org domain URL, or a custom domain URL. It can be
"ORG_URL"or"CUSTOM_URL".- name str
The Application’s display name.
- name_
format str The name identifier format to use. By default
"urn:oasis:names:tc:SAML:1.1:nameid-format:unspecified".- profile_
master bool Determines if the IdP should act as a source of truth for user profile attributes.
- provisioning_
action str Provisioning action for an IdP user during authentication.
- request_
signature_ stralgorithm The XML digital signature algorithm used when signing an AuthnRequest message.
- request_
signature_ strscope Specifies whether or not to digitally sign an AuthnRequest messages to the IdP. It can be
"REQUEST"or"NONE".- response_
signature_ stralgorithm The minimum XML digital signature algorithm allowed when verifying a SAMLResponse message or Assertion element.
- response_
signature_ strscope Specifies whether to verify a SAMLResponse message or Assertion element XML digital signature. It can be
"RESPONSE","ASSERTION", or"ANY".- sso_
binding str The method of making an SSO request. It can be set to
"HTTP-POST"or"HTTP-REDIRECT".- sso_
destination str URI reference indicating the address to which the AuthnRequest message is sent.
- status str
Status of the IdP.
- subject_
filter str Optional regular expression pattern used to filter untrusted IdP usernames.
- subject_
formats List[str] The name formate. By default
"urn:oasis:names:tc:SAML:1.1:nameid-format:unspecified".- subject_
match_ strattribute Okta user profile attribute for matching transformed IdP username. Only for matchType
"CUSTOM_ATTRIBUTE".- subject_
match_ strtype Determines the Okta user profile attribute match conditions for account linking and authentication of the transformed IdP username. By default it is set to
"USERNAME". It can be set to"USERNAME","EMAIL","USERNAME_OR_EMAIL"or"CUSTOM_ATTRIBUTE".- suspended_
action str Action for a previously suspended IdP user during authentication. Can be set to
"NONE"or"UNSUSPEND"- username_
template str Okta EL Expression to generate or transform a unique username for the IdP user.
Outputs
All input properties are implicitly available as output properties. Additionally, the Saml resource produces the following output properties:
Look up an Existing Saml Resource
Get an existing Saml resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: SamlState, opts?: CustomResourceOptions): Samlstatic get(resource_name, id, opts=None, account_link_action=None, account_link_group_includes=None, acs_binding=None, acs_type=None, audience=None, deprovisioned_action=None, groups_action=None, groups_assignments=None, groups_attribute=None, groups_filters=None, issuer=None, issuer_mode=None, kid=None, name=None, name_format=None, profile_master=None, provisioning_action=None, request_signature_algorithm=None, request_signature_scope=None, response_signature_algorithm=None, response_signature_scope=None, sso_binding=None, sso_destination=None, sso_url=None, status=None, subject_filter=None, subject_formats=None, subject_match_attribute=None, subject_match_type=None, suspended_action=None, type=None, username_template=None, __props__=None);public static Saml Get(string name, Input<string> id, SamlState? state, CustomResourceOptions? opts = null)- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
The following state arguments are supported:
- Account
Link stringAction Specifies the account linking action for an IdP user.
- Account
Link List<string>Group Includes Group memberships to determine link candidates.
- Acs
Binding string The method of making an ACS request. It can be set to
"HTTP-POST"or"HTTP-REDIRECT".- Acs
Type string The type of ACS. It can be
"INSTANCE"or"ORG".- Audience string
The audience restriction for the IdP.
- Deprovisioned
Action string Action for a previously deprovisioned IdP user during authentication. Can be
"NONE"or"REACTIVATE".- Groups
Action string Provisioning action for IdP user’s group memberships. It can be
"NONE","SYNC","APPEND", or"ASSIGN".- Groups
Assignments List<string> List of Okta Group IDs to add an IdP user as a member with the
"ASSIGN"groups_action.- Groups
Attribute string IdP user profile attribute name (case-insensitive) for an array value that contains group memberships.
- Groups
Filters List<string> Whitelist of Okta Group identifiers that are allowed for the
"APPEND"or"SYNC"groups_action.- Issuer string
URI that identifies the issuer.
- Issuer
Mode string Indicates whether Okta uses the original Okta org domain URL, or a custom domain URL. It can be
"ORG_URL"or"CUSTOM_URL".- Kid string
The ID of the signing key.
- Name string
The Application’s display name.
- Name
Format string The name identifier format to use. By default
"urn:oasis:names:tc:SAML:1.1:nameid-format:unspecified".- Profile
Master bool Determines if the IdP should act as a source of truth for user profile attributes.
- Provisioning
Action string Provisioning action for an IdP user during authentication.
- Request
Signature stringAlgorithm The XML digital signature algorithm used when signing an AuthnRequest message.
- Request
Signature stringScope Specifies whether or not to digitally sign an AuthnRequest messages to the IdP. It can be
"REQUEST"or"NONE".- Response
Signature stringAlgorithm The minimum XML digital signature algorithm allowed when verifying a SAMLResponse message or Assertion element.
- Response
Signature stringScope Specifies whether to verify a SAMLResponse message or Assertion element XML digital signature. It can be
"RESPONSE","ASSERTION", or"ANY".- Sso
Binding string The method of making an SSO request. It can be set to
"HTTP-POST"or"HTTP-REDIRECT".- Sso
Destination string URI reference indicating the address to which the AuthnRequest message is sent.
- Sso
Url string URL of binding-specific endpoint to send an AuthnRequest message to IdP.
- Status string
Status of the IdP.
- Subject
Filter string Optional regular expression pattern used to filter untrusted IdP usernames.
- Subject
Formats List<string> The name formate. By default
"urn:oasis:names:tc:SAML:1.1:nameid-format:unspecified".- Subject
Match stringAttribute Okta user profile attribute for matching transformed IdP username. Only for matchType
"CUSTOM_ATTRIBUTE".- Subject
Match stringType Determines the Okta user profile attribute match conditions for account linking and authentication of the transformed IdP username. By default it is set to
"USERNAME". It can be set to"USERNAME","EMAIL","USERNAME_OR_EMAIL"or"CUSTOM_ATTRIBUTE".- Suspended
Action string Action for a previously suspended IdP user during authentication. Can be set to
"NONE"or"UNSUSPEND"- Type string
Type of the IdP.
- Username
Template string Okta EL Expression to generate or transform a unique username for the IdP user.
- Account
Link stringAction Specifies the account linking action for an IdP user.
- Account
Link []stringGroup Includes Group memberships to determine link candidates.
- Acs
Binding string The method of making an ACS request. It can be set to
"HTTP-POST"or"HTTP-REDIRECT".- Acs
Type string The type of ACS. It can be
"INSTANCE"or"ORG".- Audience string
The audience restriction for the IdP.
- Deprovisioned
Action string Action for a previously deprovisioned IdP user during authentication. Can be
"NONE"or"REACTIVATE".- Groups
Action string Provisioning action for IdP user’s group memberships. It can be
"NONE","SYNC","APPEND", or"ASSIGN".- Groups
Assignments []string List of Okta Group IDs to add an IdP user as a member with the
"ASSIGN"groups_action.- Groups
Attribute string IdP user profile attribute name (case-insensitive) for an array value that contains group memberships.
- Groups
Filters []string Whitelist of Okta Group identifiers that are allowed for the
"APPEND"or"SYNC"groups_action.- Issuer string
URI that identifies the issuer.
- Issuer
Mode string Indicates whether Okta uses the original Okta org domain URL, or a custom domain URL. It can be
"ORG_URL"or"CUSTOM_URL".- Kid string
The ID of the signing key.
- Name string
The Application’s display name.
- Name
Format string The name identifier format to use. By default
"urn:oasis:names:tc:SAML:1.1:nameid-format:unspecified".- Profile
Master bool Determines if the IdP should act as a source of truth for user profile attributes.
- Provisioning
Action string Provisioning action for an IdP user during authentication.
- Request
Signature stringAlgorithm The XML digital signature algorithm used when signing an AuthnRequest message.
- Request
Signature stringScope Specifies whether or not to digitally sign an AuthnRequest messages to the IdP. It can be
"REQUEST"or"NONE".- Response
Signature stringAlgorithm The minimum XML digital signature algorithm allowed when verifying a SAMLResponse message or Assertion element.
- Response
Signature stringScope Specifies whether to verify a SAMLResponse message or Assertion element XML digital signature. It can be
"RESPONSE","ASSERTION", or"ANY".- Sso
Binding string The method of making an SSO request. It can be set to
"HTTP-POST"or"HTTP-REDIRECT".- Sso
Destination string URI reference indicating the address to which the AuthnRequest message is sent.
- Sso
Url string URL of binding-specific endpoint to send an AuthnRequest message to IdP.
- Status string
Status of the IdP.
- Subject
Filter string Optional regular expression pattern used to filter untrusted IdP usernames.
- Subject
Formats []string The name formate. By default
"urn:oasis:names:tc:SAML:1.1:nameid-format:unspecified".- Subject
Match stringAttribute Okta user profile attribute for matching transformed IdP username. Only for matchType
"CUSTOM_ATTRIBUTE".- Subject
Match stringType Determines the Okta user profile attribute match conditions for account linking and authentication of the transformed IdP username. By default it is set to
"USERNAME". It can be set to"USERNAME","EMAIL","USERNAME_OR_EMAIL"or"CUSTOM_ATTRIBUTE".- Suspended
Action string Action for a previously suspended IdP user during authentication. Can be set to
"NONE"or"UNSUSPEND"- Type string
Type of the IdP.
- Username
Template string Okta EL Expression to generate or transform a unique username for the IdP user.
- account
Link stringAction Specifies the account linking action for an IdP user.
- account
Link string[]Group Includes Group memberships to determine link candidates.
- acs
Binding string The method of making an ACS request. It can be set to
"HTTP-POST"or"HTTP-REDIRECT".- acs
Type string The type of ACS. It can be
"INSTANCE"or"ORG".- audience string
The audience restriction for the IdP.
- deprovisioned
Action string Action for a previously deprovisioned IdP user during authentication. Can be
"NONE"or"REACTIVATE".- groups
Action string Provisioning action for IdP user’s group memberships. It can be
"NONE","SYNC","APPEND", or"ASSIGN".- groups
Assignments string[] List of Okta Group IDs to add an IdP user as a member with the
"ASSIGN"groups_action.- groups
Attribute string IdP user profile attribute name (case-insensitive) for an array value that contains group memberships.
- groups
Filters string[] Whitelist of Okta Group identifiers that are allowed for the
"APPEND"or"SYNC"groups_action.- issuer string
URI that identifies the issuer.
- issuer
Mode string Indicates whether Okta uses the original Okta org domain URL, or a custom domain URL. It can be
"ORG_URL"or"CUSTOM_URL".- kid string
The ID of the signing key.
- name string
The Application’s display name.
- name
Format string The name identifier format to use. By default
"urn:oasis:names:tc:SAML:1.1:nameid-format:unspecified".- profile
Master boolean Determines if the IdP should act as a source of truth for user profile attributes.
- provisioning
Action string Provisioning action for an IdP user during authentication.
- request
Signature stringAlgorithm The XML digital signature algorithm used when signing an AuthnRequest message.
- request
Signature stringScope Specifies whether or not to digitally sign an AuthnRequest messages to the IdP. It can be
"REQUEST"or"NONE".- response
Signature stringAlgorithm The minimum XML digital signature algorithm allowed when verifying a SAMLResponse message or Assertion element.
- response
Signature stringScope Specifies whether to verify a SAMLResponse message or Assertion element XML digital signature. It can be
"RESPONSE","ASSERTION", or"ANY".- sso
Binding string The method of making an SSO request. It can be set to
"HTTP-POST"or"HTTP-REDIRECT".- sso
Destination string URI reference indicating the address to which the AuthnRequest message is sent.
- sso
Url string URL of binding-specific endpoint to send an AuthnRequest message to IdP.
- status string
Status of the IdP.
- subject
Filter string Optional regular expression pattern used to filter untrusted IdP usernames.
- subject
Formats string[] The name formate. By default
"urn:oasis:names:tc:SAML:1.1:nameid-format:unspecified".- subject
Match stringAttribute Okta user profile attribute for matching transformed IdP username. Only for matchType
"CUSTOM_ATTRIBUTE".- subject
Match stringType Determines the Okta user profile attribute match conditions for account linking and authentication of the transformed IdP username. By default it is set to
"USERNAME". It can be set to"USERNAME","EMAIL","USERNAME_OR_EMAIL"or"CUSTOM_ATTRIBUTE".- suspended
Action string Action for a previously suspended IdP user during authentication. Can be set to
"NONE"or"UNSUSPEND"- type string
Type of the IdP.
- username
Template string Okta EL Expression to generate or transform a unique username for the IdP user.
- account_
link_ straction Specifies the account linking action for an IdP user.
- account_
link_ List[str]group_ includes Group memberships to determine link candidates.
- acs_
binding str The method of making an ACS request. It can be set to
"HTTP-POST"or"HTTP-REDIRECT".- acs_
type str The type of ACS. It can be
"INSTANCE"or"ORG".- audience str
The audience restriction for the IdP.
- deprovisioned_
action str Action for a previously deprovisioned IdP user during authentication. Can be
"NONE"or"REACTIVATE".- groups_
action str Provisioning action for IdP user’s group memberships. It can be
"NONE","SYNC","APPEND", or"ASSIGN".- groups_
assignments List[str] List of Okta Group IDs to add an IdP user as a member with the
"ASSIGN"groups_action.- groups_
attribute str IdP user profile attribute name (case-insensitive) for an array value that contains group memberships.
- groups_
filters List[str] Whitelist of Okta Group identifiers that are allowed for the
"APPEND"or"SYNC"groups_action.- issuer str
URI that identifies the issuer.
- issuer_
mode str Indicates whether Okta uses the original Okta org domain URL, or a custom domain URL. It can be
"ORG_URL"or"CUSTOM_URL".- kid str
The ID of the signing key.
- name str
The Application’s display name.
- name_
format str The name identifier format to use. By default
"urn:oasis:names:tc:SAML:1.1:nameid-format:unspecified".- profile_
master bool Determines if the IdP should act as a source of truth for user profile attributes.
- provisioning_
action str Provisioning action for an IdP user during authentication.
- request_
signature_ stralgorithm The XML digital signature algorithm used when signing an AuthnRequest message.
- request_
signature_ strscope Specifies whether or not to digitally sign an AuthnRequest messages to the IdP. It can be
"REQUEST"or"NONE".- response_
signature_ stralgorithm The minimum XML digital signature algorithm allowed when verifying a SAMLResponse message or Assertion element.
- response_
signature_ strscope Specifies whether to verify a SAMLResponse message or Assertion element XML digital signature. It can be
"RESPONSE","ASSERTION", or"ANY".- sso_
binding str The method of making an SSO request. It can be set to
"HTTP-POST"or"HTTP-REDIRECT".- sso_
destination str URI reference indicating the address to which the AuthnRequest message is sent.
- sso_
url str URL of binding-specific endpoint to send an AuthnRequest message to IdP.
- status str
Status of the IdP.
- subject_
filter str Optional regular expression pattern used to filter untrusted IdP usernames.
- subject_
formats List[str] The name formate. By default
"urn:oasis:names:tc:SAML:1.1:nameid-format:unspecified".- subject_
match_ strattribute Okta user profile attribute for matching transformed IdP username. Only for matchType
"CUSTOM_ATTRIBUTE".- subject_
match_ strtype Determines the Okta user profile attribute match conditions for account linking and authentication of the transformed IdP username. By default it is set to
"USERNAME". It can be set to"USERNAME","EMAIL","USERNAME_OR_EMAIL"or"CUSTOM_ATTRIBUTE".- suspended_
action str Action for a previously suspended IdP user during authentication. Can be set to
"NONE"or"UNSUSPEND"- type str
Type of the IdP.
- username_
template str Okta EL Expression to generate or transform a unique username for the IdP user.
Package Details
- Repository
- https://github.com/pulumi/pulumi-okta
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oktaTerraform Provider.