auth0.UserAttributeProfile
With this resource, you can manage User Attribute Profiles within Auth0. User Attribute Profiles allow you to define how user attributes are mapped between different identity providers and Auth0.
This resource is only available for EA users.
Create UserAttributeProfile Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new UserAttributeProfile(name: string, args: UserAttributeProfileArgs, opts?: CustomResourceOptions);
@overload
def UserAttributeProfile(resource_name: str,
args: UserAttributeProfileArgs,
opts: Optional[ResourceOptions] = None)
@overload
def UserAttributeProfile(resource_name: str,
opts: Optional[ResourceOptions] = None,
user_attributes: Optional[Sequence[UserAttributeProfileUserAttributeArgs]] = None,
name: Optional[str] = None,
user_id: Optional[UserAttributeProfileUserIdArgs] = None)
func NewUserAttributeProfile(ctx *Context, name string, args UserAttributeProfileArgs, opts ...ResourceOption) (*UserAttributeProfile, error)
public UserAttributeProfile(string name, UserAttributeProfileArgs args, CustomResourceOptions? opts = null)
public UserAttributeProfile(String name, UserAttributeProfileArgs args)
public UserAttributeProfile(String name, UserAttributeProfileArgs args, CustomResourceOptions options)
type: auth0:UserAttributeProfile
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args UserAttributeProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args UserAttributeProfileArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args UserAttributeProfileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args UserAttributeProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args UserAttributeProfileArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var userAttributeProfileResource = new Auth0.UserAttributeProfile("userAttributeProfileResource", new()
{
UserAttributes = new[]
{
new Auth0.Inputs.UserAttributeProfileUserAttributeArgs
{
Auth0Mapping = "string",
Description = "string",
Label = "string",
Name = "string",
ProfileRequired = false,
OidcMapping = new Auth0.Inputs.UserAttributeProfileUserAttributeOidcMappingArgs
{
Mapping = "string",
DisplayName = "string",
},
SamlMappings = new[]
{
"string",
},
ScimMapping = "string",
StrategyOverrides = new[]
{
new Auth0.Inputs.UserAttributeProfileUserAttributeStrategyOverrideArgs
{
Strategy = "string",
OidcMapping = new Auth0.Inputs.UserAttributeProfileUserAttributeStrategyOverrideOidcMappingArgs
{
Mapping = "string",
DisplayName = "string",
},
SamlMappings = new[]
{
"string",
},
ScimMapping = "string",
},
},
},
},
Name = "string",
UserId = new Auth0.Inputs.UserAttributeProfileUserIdArgs
{
OidcMapping = "string",
SamlMappings = new[]
{
"string",
},
ScimMapping = "string",
StrategyOverrides = new[]
{
new Auth0.Inputs.UserAttributeProfileUserIdStrategyOverrideArgs
{
Strategy = "string",
OidcMapping = "string",
SamlMappings = new[]
{
"string",
},
ScimMapping = "string",
},
},
},
});
example, err := auth0.NewUserAttributeProfile(ctx, "userAttributeProfileResource", &auth0.UserAttributeProfileArgs{
UserAttributes: auth0.UserAttributeProfileUserAttributeArray{
&auth0.UserAttributeProfileUserAttributeArgs{
Auth0Mapping: pulumi.String("string"),
Description: pulumi.String("string"),
Label: pulumi.String("string"),
Name: pulumi.String("string"),
ProfileRequired: pulumi.Bool(false),
OidcMapping: &auth0.UserAttributeProfileUserAttributeOidcMappingArgs{
Mapping: pulumi.String("string"),
DisplayName: pulumi.String("string"),
},
SamlMappings: pulumi.StringArray{
pulumi.String("string"),
},
ScimMapping: pulumi.String("string"),
StrategyOverrides: auth0.UserAttributeProfileUserAttributeStrategyOverrideArray{
&auth0.UserAttributeProfileUserAttributeStrategyOverrideArgs{
Strategy: pulumi.String("string"),
OidcMapping: &auth0.UserAttributeProfileUserAttributeStrategyOverrideOidcMappingArgs{
Mapping: pulumi.String("string"),
DisplayName: pulumi.String("string"),
},
SamlMappings: pulumi.StringArray{
pulumi.String("string"),
},
ScimMapping: pulumi.String("string"),
},
},
},
},
Name: pulumi.String("string"),
UserId: &auth0.UserAttributeProfileUserIdArgs{
OidcMapping: pulumi.String("string"),
SamlMappings: pulumi.StringArray{
pulumi.String("string"),
},
ScimMapping: pulumi.String("string"),
StrategyOverrides: auth0.UserAttributeProfileUserIdStrategyOverrideArray{
&auth0.UserAttributeProfileUserIdStrategyOverrideArgs{
Strategy: pulumi.String("string"),
OidcMapping: pulumi.String("string"),
SamlMappings: pulumi.StringArray{
pulumi.String("string"),
},
ScimMapping: pulumi.String("string"),
},
},
},
})
var userAttributeProfileResource = new UserAttributeProfile("userAttributeProfileResource", UserAttributeProfileArgs.builder()
.userAttributes(UserAttributeProfileUserAttributeArgs.builder()
.auth0Mapping("string")
.description("string")
.label("string")
.name("string")
.profileRequired(false)
.oidcMapping(UserAttributeProfileUserAttributeOidcMappingArgs.builder()
.mapping("string")
.displayName("string")
.build())
.samlMappings("string")
.scimMapping("string")
.strategyOverrides(UserAttributeProfileUserAttributeStrategyOverrideArgs.builder()
.strategy("string")
.oidcMapping(UserAttributeProfileUserAttributeStrategyOverrideOidcMappingArgs.builder()
.mapping("string")
.displayName("string")
.build())
.samlMappings("string")
.scimMapping("string")
.build())
.build())
.name("string")
.userId(UserAttributeProfileUserIdArgs.builder()
.oidcMapping("string")
.samlMappings("string")
.scimMapping("string")
.strategyOverrides(UserAttributeProfileUserIdStrategyOverrideArgs.builder()
.strategy("string")
.oidcMapping("string")
.samlMappings("string")
.scimMapping("string")
.build())
.build())
.build());
user_attribute_profile_resource = auth0.UserAttributeProfile("userAttributeProfileResource",
user_attributes=[{
"auth0_mapping": "string",
"description": "string",
"label": "string",
"name": "string",
"profile_required": False,
"oidc_mapping": {
"mapping": "string",
"display_name": "string",
},
"saml_mappings": ["string"],
"scim_mapping": "string",
"strategy_overrides": [{
"strategy": "string",
"oidc_mapping": {
"mapping": "string",
"display_name": "string",
},
"saml_mappings": ["string"],
"scim_mapping": "string",
}],
}],
name="string",
user_id={
"oidc_mapping": "string",
"saml_mappings": ["string"],
"scim_mapping": "string",
"strategy_overrides": [{
"strategy": "string",
"oidc_mapping": "string",
"saml_mappings": ["string"],
"scim_mapping": "string",
}],
})
const userAttributeProfileResource = new auth0.UserAttributeProfile("userAttributeProfileResource", {
userAttributes: [{
auth0Mapping: "string",
description: "string",
label: "string",
name: "string",
profileRequired: false,
oidcMapping: {
mapping: "string",
displayName: "string",
},
samlMappings: ["string"],
scimMapping: "string",
strategyOverrides: [{
strategy: "string",
oidcMapping: {
mapping: "string",
displayName: "string",
},
samlMappings: ["string"],
scimMapping: "string",
}],
}],
name: "string",
userId: {
oidcMapping: "string",
samlMappings: ["string"],
scimMapping: "string",
strategyOverrides: [{
strategy: "string",
oidcMapping: "string",
samlMappings: ["string"],
scimMapping: "string",
}],
},
});
type: auth0:UserAttributeProfile
properties:
name: string
userAttributes:
- auth0Mapping: string
description: string
label: string
name: string
oidcMapping:
displayName: string
mapping: string
profileRequired: false
samlMappings:
- string
scimMapping: string
strategyOverrides:
- oidcMapping:
displayName: string
mapping: string
samlMappings:
- string
scimMapping: string
strategy: string
userId:
oidcMapping: string
samlMappings:
- string
scimMapping: string
strategyOverrides:
- oidcMapping: string
samlMappings:
- string
scimMapping: string
strategy: string
UserAttributeProfile Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The UserAttributeProfile resource accepts the following input properties:
- User
Attributes List<UserAttribute Profile User Attribute> - List of user attribute configurations.
- Name string
- The name of the User Attribute Profile.
- User
Id UserAttribute Profile User Id - Configuration for mapping the user ID from identity providers.
- User
Attributes []UserAttribute Profile User Attribute Args - List of user attribute configurations.
- Name string
- The name of the User Attribute Profile.
- User
Id UserAttribute Profile User Id Args - Configuration for mapping the user ID from identity providers.
- user
Attributes List<UserAttribute Profile User Attribute> - List of user attribute configurations.
- name String
- The name of the User Attribute Profile.
- user
Id UserAttribute Profile User Id - Configuration for mapping the user ID from identity providers.
- user
Attributes UserAttribute Profile User Attribute[] - List of user attribute configurations.
- name string
- The name of the User Attribute Profile.
- user
Id UserAttribute Profile User Id - Configuration for mapping the user ID from identity providers.
- user_
attributes Sequence[UserAttribute Profile User Attribute Args] - List of user attribute configurations.
- name str
- The name of the User Attribute Profile.
- user_
id UserAttribute Profile User Id Args - Configuration for mapping the user ID from identity providers.
- user
Attributes List<Property Map> - List of user attribute configurations.
- name String
- The name of the User Attribute Profile.
- user
Id Property Map - Configuration for mapping the user ID from identity providers.
Outputs
All input properties are implicitly available as output properties. Additionally, the UserAttributeProfile resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing UserAttributeProfile Resource
Get an existing UserAttributeProfile 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?: UserAttributeProfileState, opts?: CustomResourceOptions): UserAttributeProfile
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
name: Optional[str] = None,
user_attributes: Optional[Sequence[UserAttributeProfileUserAttributeArgs]] = None,
user_id: Optional[UserAttributeProfileUserIdArgs] = None) -> UserAttributeProfile
func GetUserAttributeProfile(ctx *Context, name string, id IDInput, state *UserAttributeProfileState, opts ...ResourceOption) (*UserAttributeProfile, error)
public static UserAttributeProfile Get(string name, Input<string> id, UserAttributeProfileState? state, CustomResourceOptions? opts = null)
public static UserAttributeProfile get(String name, Output<String> id, UserAttributeProfileState state, CustomResourceOptions options)
resources: _: type: auth0:UserAttributeProfile get: id: ${id}
- 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.
- 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 string
- The name of the User Attribute Profile.
- User
Attributes List<UserAttribute Profile User Attribute> - List of user attribute configurations.
- User
Id UserAttribute Profile User Id - Configuration for mapping the user ID from identity providers.
- Name string
- The name of the User Attribute Profile.
- User
Attributes []UserAttribute Profile User Attribute Args - List of user attribute configurations.
- User
Id UserAttribute Profile User Id Args - Configuration for mapping the user ID from identity providers.
- name String
- The name of the User Attribute Profile.
- user
Attributes List<UserAttribute Profile User Attribute> - List of user attribute configurations.
- user
Id UserAttribute Profile User Id - Configuration for mapping the user ID from identity providers.
- name string
- The name of the User Attribute Profile.
- user
Attributes UserAttribute Profile User Attribute[] - List of user attribute configurations.
- user
Id UserAttribute Profile User Id - Configuration for mapping the user ID from identity providers.
- name str
- The name of the User Attribute Profile.
- user_
attributes Sequence[UserAttribute Profile User Attribute Args] - List of user attribute configurations.
- user_
id UserAttribute Profile User Id Args - Configuration for mapping the user ID from identity providers.
- name String
- The name of the User Attribute Profile.
- user
Attributes List<Property Map> - List of user attribute configurations.
- user
Id Property Map - Configuration for mapping the user ID from identity providers.
Supporting Types
UserAttributeProfileUserAttribute, UserAttributeProfileUserAttributeArgs
- Auth0Mapping string
- The Auth0 mapping for the user attribute.
- Description string
- Description of the user attribute.
- Label string
- Display label for the user attribute.
- Name string
- Name of the user attribute.
- Profile
Required bool - Whether the attribute is required in the profile.
- Oidc
Mapping UserAttribute Profile User Attribute Oidc Mapping - The OIDC mapping configuration for the user attribute.
- Saml
Mappings List<string> - SAML mapping override for this strategy.
- Scim
Mapping string - The SCIM mapping for the user attribute.
- Strategy
Overrides List<UserAttribute Profile User Attribute Strategy Override> - Strategy-specific overrides for user attribute mapping.
- Auth0Mapping string
- The Auth0 mapping for the user attribute.
- Description string
- Description of the user attribute.
- Label string
- Display label for the user attribute.
- Name string
- Name of the user attribute.
- Profile
Required bool - Whether the attribute is required in the profile.
- Oidc
Mapping UserAttribute Profile User Attribute Oidc Mapping - The OIDC mapping configuration for the user attribute.
- Saml
Mappings []string - SAML mapping override for this strategy.
- Scim
Mapping string - The SCIM mapping for the user attribute.
- Strategy
Overrides []UserAttribute Profile User Attribute Strategy Override - Strategy-specific overrides for user attribute mapping.
- auth0Mapping String
- The Auth0 mapping for the user attribute.
- description String
- Description of the user attribute.
- label String
- Display label for the user attribute.
- name String
- Name of the user attribute.
- profile
Required Boolean - Whether the attribute is required in the profile.
- oidc
Mapping UserAttribute Profile User Attribute Oidc Mapping - The OIDC mapping configuration for the user attribute.
- saml
Mappings List<String> - SAML mapping override for this strategy.
- scim
Mapping String - The SCIM mapping for the user attribute.
- strategy
Overrides List<UserAttribute Profile User Attribute Strategy Override> - Strategy-specific overrides for user attribute mapping.
- auth0Mapping string
- The Auth0 mapping for the user attribute.
- description string
- Description of the user attribute.
- label string
- Display label for the user attribute.
- name string
- Name of the user attribute.
- profile
Required boolean - Whether the attribute is required in the profile.
- oidc
Mapping UserAttribute Profile User Attribute Oidc Mapping - The OIDC mapping configuration for the user attribute.
- saml
Mappings string[] - SAML mapping override for this strategy.
- scim
Mapping string - The SCIM mapping for the user attribute.
- strategy
Overrides UserAttribute Profile User Attribute Strategy Override[] - Strategy-specific overrides for user attribute mapping.
- auth0_
mapping str - The Auth0 mapping for the user attribute.
- description str
- Description of the user attribute.
- label str
- Display label for the user attribute.
- name str
- Name of the user attribute.
- profile_
required bool - Whether the attribute is required in the profile.
- oidc_
mapping UserAttribute Profile User Attribute Oidc Mapping - The OIDC mapping configuration for the user attribute.
- saml_
mappings Sequence[str] - SAML mapping override for this strategy.
- scim_
mapping str - The SCIM mapping for the user attribute.
- strategy_
overrides Sequence[UserAttribute Profile User Attribute Strategy Override] - Strategy-specific overrides for user attribute mapping.
- auth0Mapping String
- The Auth0 mapping for the user attribute.
- description String
- Description of the user attribute.
- label String
- Display label for the user attribute.
- name String
- Name of the user attribute.
- profile
Required Boolean - Whether the attribute is required in the profile.
- oidc
Mapping Property Map - The OIDC mapping configuration for the user attribute.
- saml
Mappings List<String> - SAML mapping override for this strategy.
- scim
Mapping String - The SCIM mapping for the user attribute.
- strategy
Overrides List<Property Map> - Strategy-specific overrides for user attribute mapping.
UserAttributeProfileUserAttributeOidcMapping, UserAttributeProfileUserAttributeOidcMappingArgs
- Mapping string
- The OIDC mapping field.
- Display
Name string - Display name for the OIDC mapping.
- Mapping string
- The OIDC mapping field.
- Display
Name string - Display name for the OIDC mapping.
- mapping String
- The OIDC mapping field.
- display
Name String - Display name for the OIDC mapping.
- mapping string
- The OIDC mapping field.
- display
Name string - Display name for the OIDC mapping.
- mapping str
- The OIDC mapping field.
- display_
name str - Display name for the OIDC mapping.
- mapping String
- The OIDC mapping field.
- display
Name String - Display name for the OIDC mapping.
UserAttributeProfileUserAttributeStrategyOverride, UserAttributeProfileUserAttributeStrategyOverrideArgs
- Strategy string
- The strategy name (e.g., 'oidc', 'samlp', 'ad', etc.).
- Oidc
Mapping UserAttribute Profile User Attribute Strategy Override Oidc Mapping - OIDC mapping override for this strategy.
- Saml
Mappings List<string> - SAML mapping override for this strategy.
- Scim
Mapping string - SCIM mapping override for this strategy.
- Strategy string
- The strategy name (e.g., 'oidc', 'samlp', 'ad', etc.).
- Oidc
Mapping UserAttribute Profile User Attribute Strategy Override Oidc Mapping - OIDC mapping override for this strategy.
- Saml
Mappings []string - SAML mapping override for this strategy.
- Scim
Mapping string - SCIM mapping override for this strategy.
- strategy String
- The strategy name (e.g., 'oidc', 'samlp', 'ad', etc.).
- oidc
Mapping UserAttribute Profile User Attribute Strategy Override Oidc Mapping - OIDC mapping override for this strategy.
- saml
Mappings List<String> - SAML mapping override for this strategy.
- scim
Mapping String - SCIM mapping override for this strategy.
- strategy string
- The strategy name (e.g., 'oidc', 'samlp', 'ad', etc.).
- oidc
Mapping UserAttribute Profile User Attribute Strategy Override Oidc Mapping - OIDC mapping override for this strategy.
- saml
Mappings string[] - SAML mapping override for this strategy.
- scim
Mapping string - SCIM mapping override for this strategy.
- strategy str
- The strategy name (e.g., 'oidc', 'samlp', 'ad', etc.).
- oidc_
mapping UserAttribute Profile User Attribute Strategy Override Oidc Mapping - OIDC mapping override for this strategy.
- saml_
mappings Sequence[str] - SAML mapping override for this strategy.
- scim_
mapping str - SCIM mapping override for this strategy.
- strategy String
- The strategy name (e.g., 'oidc', 'samlp', 'ad', etc.).
- oidc
Mapping Property Map - OIDC mapping override for this strategy.
- saml
Mappings List<String> - SAML mapping override for this strategy.
- scim
Mapping String - SCIM mapping override for this strategy.
UserAttributeProfileUserAttributeStrategyOverrideOidcMapping, UserAttributeProfileUserAttributeStrategyOverrideOidcMappingArgs
- Mapping string
- The OIDC mapping field.
- Display
Name string - Display name for the OIDC mapping.
- Mapping string
- The OIDC mapping field.
- Display
Name string - Display name for the OIDC mapping.
- mapping String
- The OIDC mapping field.
- display
Name String - Display name for the OIDC mapping.
- mapping string
- The OIDC mapping field.
- display
Name string - Display name for the OIDC mapping.
- mapping str
- The OIDC mapping field.
- display_
name str - Display name for the OIDC mapping.
- mapping String
- The OIDC mapping field.
- display
Name String - Display name for the OIDC mapping.
UserAttributeProfileUserId, UserAttributeProfileUserIdArgs
- Oidc
Mapping string - The OIDC mapping for the user ID.
- Saml
Mappings List<string> - The SAML mapping for the user ID.
- Scim
Mapping string - The SCIM mapping for the user ID.
- Strategy
Overrides List<UserAttribute Profile User Id Strategy Override> - Strategy-specific overrides for user ID mapping.
- Oidc
Mapping string - The OIDC mapping for the user ID.
- Saml
Mappings []string - The SAML mapping for the user ID.
- Scim
Mapping string - The SCIM mapping for the user ID.
- Strategy
Overrides []UserAttribute Profile User Id Strategy Override - Strategy-specific overrides for user ID mapping.
- oidc
Mapping String - The OIDC mapping for the user ID.
- saml
Mappings List<String> - The SAML mapping for the user ID.
- scim
Mapping String - The SCIM mapping for the user ID.
- strategy
Overrides List<UserAttribute Profile User Id Strategy Override> - Strategy-specific overrides for user ID mapping.
- oidc
Mapping string - The OIDC mapping for the user ID.
- saml
Mappings string[] - The SAML mapping for the user ID.
- scim
Mapping string - The SCIM mapping for the user ID.
- strategy
Overrides UserAttribute Profile User Id Strategy Override[] - Strategy-specific overrides for user ID mapping.
- oidc_
mapping str - The OIDC mapping for the user ID.
- saml_
mappings Sequence[str] - The SAML mapping for the user ID.
- scim_
mapping str - The SCIM mapping for the user ID.
- strategy_
overrides Sequence[UserAttribute Profile User Id Strategy Override] - Strategy-specific overrides for user ID mapping.
- oidc
Mapping String - The OIDC mapping for the user ID.
- saml
Mappings List<String> - The SAML mapping for the user ID.
- scim
Mapping String - The SCIM mapping for the user ID.
- strategy
Overrides List<Property Map> - Strategy-specific overrides for user ID mapping.
UserAttributeProfileUserIdStrategyOverride, UserAttributeProfileUserIdStrategyOverrideArgs
- Strategy string
- The strategy name (e.g., 'oidc', 'samlp', 'ad', etc.).
- Oidc
Mapping string - OIDC mapping override for this strategy.
- Saml
Mappings List<string> - SAML mapping override for this strategy.
- Scim
Mapping string - SCIM mapping override for this strategy.
- Strategy string
- The strategy name (e.g., 'oidc', 'samlp', 'ad', etc.).
- Oidc
Mapping string - OIDC mapping override for this strategy.
- Saml
Mappings []string - SAML mapping override for this strategy.
- Scim
Mapping string - SCIM mapping override for this strategy.
- strategy String
- The strategy name (e.g., 'oidc', 'samlp', 'ad', etc.).
- oidc
Mapping String - OIDC mapping override for this strategy.
- saml
Mappings List<String> - SAML mapping override for this strategy.
- scim
Mapping String - SCIM mapping override for this strategy.
- strategy string
- The strategy name (e.g., 'oidc', 'samlp', 'ad', etc.).
- oidc
Mapping string - OIDC mapping override for this strategy.
- saml
Mappings string[] - SAML mapping override for this strategy.
- scim
Mapping string - SCIM mapping override for this strategy.
- strategy str
- The strategy name (e.g., 'oidc', 'samlp', 'ad', etc.).
- oidc_
mapping str - OIDC mapping override for this strategy.
- saml_
mappings Sequence[str] - SAML mapping override for this strategy.
- scim_
mapping str - SCIM mapping override for this strategy.
- strategy String
- The strategy name (e.g., 'oidc', 'samlp', 'ad', etc.).
- oidc
Mapping String - OIDC mapping override for this strategy.
- saml
Mappings List<String> - SAML mapping override for this strategy.
- scim
Mapping String - SCIM mapping override for this strategy.
Package Details
- Repository
- Auth0 pulumi/pulumi-auth0
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
auth0
Terraform Provider.