Social
Creates an Social Identity Provider.
This resource allows you to create and configure an Social Identity Provider.
Example Usage
using Pulumi;
using Okta = Pulumi.Okta;
class MyStack : Stack
{
public MyStack()
{
var example = new Okta.Idp.Social("example", new Okta.Idp.SocialArgs
{
ClientId = "abcd123",
ClientSecret = "abcd123",
MatchAttribute = "customfieldId",
MatchType = "CUSTOM_ATTRIBUTE",
ProtocolType = "OAUTH2",
Scopes =
{
"public_profile",
"email",
},
Type = "FACEBOOK",
UsernameTemplate = "idpuser.email",
});
}
}
Coming soon!
import pulumi
import pulumi_okta as okta
example = okta.idp.Social("example",
client_id="abcd123",
client_secret="abcd123",
match_attribute="customfieldId",
match_type="CUSTOM_ATTRIBUTE",
protocol_type="OAUTH2",
scopes=[
"public_profile",
"email",
],
type="FACEBOOK",
username_template="idpuser.email")import * as pulumi from "@pulumi/pulumi";
import * as okta from "@pulumi/okta";
const example = new okta.idp.Social("example", {
clientId: "abcd123",
clientSecret: "abcd123",
matchAttribute: "customfieldId",
matchType: "CUSTOM_ATTRIBUTE",
protocolType: "OAUTH2",
scopes: [
"public_profile",
"email",
],
type: "FACEBOOK",
usernameTemplate: "idpuser.email",
});Create a Social Resource
new Social(name: string, args: SocialArgs, opts?: CustomResourceOptions);def Social(resource_name, opts=None, account_link_action=None, account_link_group_includes=None, client_id=None, client_secret=None, deprovisioned_action=None, groups_action=None, groups_assignments=None, groups_attribute=None, groups_filters=None, issuer_mode=None, match_attribute=None, match_type=None, max_clock_skew=None, name=None, profile_master=None, protocol_type=None, provisioning_action=None, request_signature_algorithm=None, request_signature_scope=None, response_signature_algorithm=None, response_signature_scope=None, scopes=None, status=None, subject_match_attribute=None, subject_match_type=None, suspended_action=None, type=None, username_template=None, __props__=None);func NewSocial(ctx *Context, name string, args SocialArgs, opts ...ResourceOption) (*Social, error)public Social(string name, SocialArgs args, CustomResourceOptions? opts = null)- name string
- The unique name of the resource.
- args SocialArgs
- 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 SocialArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SocialArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
Social Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.
Inputs
The Social resource accepts the following input properties:
- Scopes List<string>
The scopes of the IdP.
- Type string
The type of Social IdP. It can be
"FACEBOOK","LINKEDIN","MICROSOFT", or"GOOGLE".- Account
Link stringAction Specifies the account linking action for an IdP user.
- Account
Link List<string>Group Includes Group memberships to determine link candidates.
- Client
Id string Unique identifier issued by AS for the Okta IdP instance.
- Client
Secret string Client secret issued by AS for the Okta IdP instance.
- 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".- Match
Attribute string - Match
Type string - Max
Clock intSkew Maximum allowable clock-skew when processing messages from the IdP.
- Name string
The Application’s display name.
- Profile
Master bool Determines if the IdP should act as a source of truth for user profile attributes.
- Protocol
Type string The type of protocol to use. It can be
"OIDC"or"OAUTH2".- 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".- Status string
Status of the IdP.
- 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.
- Scopes []string
The scopes of the IdP.
- Type string
The type of Social IdP. It can be
"FACEBOOK","LINKEDIN","MICROSOFT", or"GOOGLE".- Account
Link stringAction Specifies the account linking action for an IdP user.
- Account
Link []stringGroup Includes Group memberships to determine link candidates.
- Client
Id string Unique identifier issued by AS for the Okta IdP instance.
- Client
Secret string Client secret issued by AS for the Okta IdP instance.
- 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".- Match
Attribute string - Match
Type string - Max
Clock intSkew Maximum allowable clock-skew when processing messages from the IdP.
- Name string
The Application’s display name.
- Profile
Master bool Determines if the IdP should act as a source of truth for user profile attributes.
- Protocol
Type string The type of protocol to use. It can be
"OIDC"or"OAUTH2".- 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".- Status string
Status of the IdP.
- 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.
- scopes string[]
The scopes of the IdP.
- type string
The type of Social IdP. It can be
"FACEBOOK","LINKEDIN","MICROSOFT", or"GOOGLE".- account
Link stringAction Specifies the account linking action for an IdP user.
- account
Link string[]Group Includes Group memberships to determine link candidates.
- client
Id string Unique identifier issued by AS for the Okta IdP instance.
- client
Secret string Client secret issued by AS for the Okta IdP instance.
- 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".- match
Attribute string - match
Type string - max
Clock numberSkew Maximum allowable clock-skew when processing messages from the IdP.
- name string
The Application’s display name.
- profile
Master boolean Determines if the IdP should act as a source of truth for user profile attributes.
- protocol
Type string The type of protocol to use. It can be
"OIDC"or"OAUTH2".- 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".- status string
Status of the IdP.
- 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.
- scopes List[str]
The scopes of the IdP.
- type str
The type of Social IdP. It can be
"FACEBOOK","LINKEDIN","MICROSOFT", or"GOOGLE".- account_
link_ straction Specifies the account linking action for an IdP user.
- account_
link_ List[str]group_ includes Group memberships to determine link candidates.
- client_
id str Unique identifier issued by AS for the Okta IdP instance.
- client_
secret str Client secret issued by AS for the Okta IdP instance.
- 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".- match_
attribute str - match_
type str - max_
clock_ floatskew Maximum allowable clock-skew when processing messages from the IdP.
- name str
The Application’s display name.
- profile_
master bool Determines if the IdP should act as a source of truth for user profile attributes.
- protocol_
type str The type of protocol to use. It can be
"OIDC"or"OAUTH2".- 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".- status str
Status of the IdP.
- 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 Social resource produces the following output properties:
- string
The method of making an authorization request. It can be set to
"HTTP-POST"or"HTTP-REDIRECT".- string
IdP Authorization Server (AS) endpoint to request consent from the user and obtain an authorization code grant.
- Id string
- The provider-assigned unique ID for this managed resource.
- Token
Binding string The method of making a token request. It can be set to
"HTTP-POST"or"HTTP-REDIRECT".- Token
Url string IdP Authorization Server (AS) endpoint to exchange the authorization code grant for an access token.
- string
The method of making an authorization request. It can be set to
"HTTP-POST"or"HTTP-REDIRECT".- string
IdP Authorization Server (AS) endpoint to request consent from the user and obtain an authorization code grant.
- Id string
- The provider-assigned unique ID for this managed resource.
- Token
Binding string The method of making a token request. It can be set to
"HTTP-POST"or"HTTP-REDIRECT".- Token
Url string IdP Authorization Server (AS) endpoint to exchange the authorization code grant for an access token.
- string
The method of making an authorization request. It can be set to
"HTTP-POST"or"HTTP-REDIRECT".- string
IdP Authorization Server (AS) endpoint to request consent from the user and obtain an authorization code grant.
- id string
- The provider-assigned unique ID for this managed resource.
- token
Binding string The method of making a token request. It can be set to
"HTTP-POST"or"HTTP-REDIRECT".- token
Url string IdP Authorization Server (AS) endpoint to exchange the authorization code grant for an access token.
- str
The method of making an authorization request. It can be set to
"HTTP-POST"or"HTTP-REDIRECT".- str
IdP Authorization Server (AS) endpoint to request consent from the user and obtain an authorization code grant.
- id str
- The provider-assigned unique ID for this managed resource.
- token_
binding str The method of making a token request. It can be set to
"HTTP-POST"or"HTTP-REDIRECT".- token_
url str IdP Authorization Server (AS) endpoint to exchange the authorization code grant for an access token.
Look up an Existing Social Resource
Get an existing Social 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?: SocialState, opts?: CustomResourceOptions): Socialstatic get(resource_name, id, opts=None, account_link_action=None, account_link_group_includes=None, authorization_binding=None, authorization_url=None, client_id=None, client_secret=None, deprovisioned_action=None, groups_action=None, groups_assignments=None, groups_attribute=None, groups_filters=None, issuer_mode=None, match_attribute=None, match_type=None, max_clock_skew=None, name=None, profile_master=None, protocol_type=None, provisioning_action=None, request_signature_algorithm=None, request_signature_scope=None, response_signature_algorithm=None, response_signature_scope=None, scopes=None, status=None, subject_match_attribute=None, subject_match_type=None, suspended_action=None, token_binding=None, token_url=None, type=None, username_template=None, __props__=None);func GetSocial(ctx *Context, name string, id IDInput, state *SocialState, opts ...ResourceOption) (*Social, error)public static Social Get(string name, Input<string> id, SocialState? 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.
- string
The method of making an authorization request. It can be set to
"HTTP-POST"or"HTTP-REDIRECT".- string
IdP Authorization Server (AS) endpoint to request consent from the user and obtain an authorization code grant.
- Client
Id string Unique identifier issued by AS for the Okta IdP instance.
- Client
Secret string Client secret issued by AS for the Okta IdP instance.
- 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".- Match
Attribute string - Match
Type string - Max
Clock intSkew Maximum allowable clock-skew when processing messages from the IdP.
- Name string
The Application’s display name.
- Profile
Master bool Determines if the IdP should act as a source of truth for user profile attributes.
- Protocol
Type string The type of protocol to use. It can be
"OIDC"or"OAUTH2".- 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".- Scopes List<string>
The scopes of the IdP.
- Status string
Status of the IdP.
- 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"- Token
Binding string The method of making a token request. It can be set to
"HTTP-POST"or"HTTP-REDIRECT".- Token
Url string IdP Authorization Server (AS) endpoint to exchange the authorization code grant for an access token.
- Type string
The type of Social IdP. It can be
"FACEBOOK","LINKEDIN","MICROSOFT", or"GOOGLE".- 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.
- string
The method of making an authorization request. It can be set to
"HTTP-POST"or"HTTP-REDIRECT".- string
IdP Authorization Server (AS) endpoint to request consent from the user and obtain an authorization code grant.
- Client
Id string Unique identifier issued by AS for the Okta IdP instance.
- Client
Secret string Client secret issued by AS for the Okta IdP instance.
- 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".- Match
Attribute string - Match
Type string - Max
Clock intSkew Maximum allowable clock-skew when processing messages from the IdP.
- Name string
The Application’s display name.
- Profile
Master bool Determines if the IdP should act as a source of truth for user profile attributes.
- Protocol
Type string The type of protocol to use. It can be
"OIDC"or"OAUTH2".- 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".- Scopes []string
The scopes of the IdP.
- Status string
Status of the IdP.
- 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"- Token
Binding string The method of making a token request. It can be set to
"HTTP-POST"or"HTTP-REDIRECT".- Token
Url string IdP Authorization Server (AS) endpoint to exchange the authorization code grant for an access token.
- Type string
The type of Social IdP. It can be
"FACEBOOK","LINKEDIN","MICROSOFT", or"GOOGLE".- 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.
- string
The method of making an authorization request. It can be set to
"HTTP-POST"or"HTTP-REDIRECT".- string
IdP Authorization Server (AS) endpoint to request consent from the user and obtain an authorization code grant.
- client
Id string Unique identifier issued by AS for the Okta IdP instance.
- client
Secret string Client secret issued by AS for the Okta IdP instance.
- 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".- match
Attribute string - match
Type string - max
Clock numberSkew Maximum allowable clock-skew when processing messages from the IdP.
- name string
The Application’s display name.
- profile
Master boolean Determines if the IdP should act as a source of truth for user profile attributes.
- protocol
Type string The type of protocol to use. It can be
"OIDC"or"OAUTH2".- 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".- scopes string[]
The scopes of the IdP.
- status string
Status of the IdP.
- 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"- token
Binding string The method of making a token request. It can be set to
"HTTP-POST"or"HTTP-REDIRECT".- token
Url string IdP Authorization Server (AS) endpoint to exchange the authorization code grant for an access token.
- type string
The type of Social IdP. It can be
"FACEBOOK","LINKEDIN","MICROSOFT", or"GOOGLE".- 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.
- str
The method of making an authorization request. It can be set to
"HTTP-POST"or"HTTP-REDIRECT".- str
IdP Authorization Server (AS) endpoint to request consent from the user and obtain an authorization code grant.
- client_
id str Unique identifier issued by AS for the Okta IdP instance.
- client_
secret str Client secret issued by AS for the Okta IdP instance.
- 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".- match_
attribute str - match_
type str - max_
clock_ floatskew Maximum allowable clock-skew when processing messages from the IdP.
- name str
The Application’s display name.
- profile_
master bool Determines if the IdP should act as a source of truth for user profile attributes.
- protocol_
type str The type of protocol to use. It can be
"OIDC"or"OAUTH2".- 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".- scopes List[str]
The scopes of the IdP.
- status str
Status of the IdP.
- 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"- token_
binding str The method of making a token request. It can be set to
"HTTP-POST"or"HTTP-REDIRECT".- token_
url str IdP Authorization Server (AS) endpoint to exchange the authorization code grant for an access token.
- type str
The type of Social IdP. It can be
"FACEBOOK","LINKEDIN","MICROSOFT", or"GOOGLE".- 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.