1. Packages
  2. Auth0 Provider
  3. API Docs
  4. UserAttributeProfile
Auth0 v3.30.0 published on Tuesday, Oct 14, 2025 by Pulumi

auth0.UserAttributeProfile

Deploy with Pulumi
auth0 logo
Auth0 v3.30.0 published on Tuesday, Oct 14, 2025 by Pulumi

    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:

    UserAttributes List<UserAttributeProfileUserAttribute>
    List of user attribute configurations.
    Name string
    The name of the User Attribute Profile.
    UserId UserAttributeProfileUserId
    Configuration for mapping the user ID from identity providers.
    UserAttributes []UserAttributeProfileUserAttributeArgs
    List of user attribute configurations.
    Name string
    The name of the User Attribute Profile.
    UserId UserAttributeProfileUserIdArgs
    Configuration for mapping the user ID from identity providers.
    userAttributes List<UserAttributeProfileUserAttribute>
    List of user attribute configurations.
    name String
    The name of the User Attribute Profile.
    userId UserAttributeProfileUserId
    Configuration for mapping the user ID from identity providers.
    userAttributes UserAttributeProfileUserAttribute[]
    List of user attribute configurations.
    name string
    The name of the User Attribute Profile.
    userId UserAttributeProfileUserId
    Configuration for mapping the user ID from identity providers.
    user_attributes Sequence[UserAttributeProfileUserAttributeArgs]
    List of user attribute configurations.
    name str
    The name of the User Attribute Profile.
    user_id UserAttributeProfileUserIdArgs
    Configuration for mapping the user ID from identity providers.
    userAttributes List<Property Map>
    List of user attribute configurations.
    name String
    The name of the User Attribute Profile.
    userId 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.
    The following state arguments are supported:
    Name string
    The name of the User Attribute Profile.
    UserAttributes List<UserAttributeProfileUserAttribute>
    List of user attribute configurations.
    UserId UserAttributeProfileUserId
    Configuration for mapping the user ID from identity providers.
    Name string
    The name of the User Attribute Profile.
    UserAttributes []UserAttributeProfileUserAttributeArgs
    List of user attribute configurations.
    UserId UserAttributeProfileUserIdArgs
    Configuration for mapping the user ID from identity providers.
    name String
    The name of the User Attribute Profile.
    userAttributes List<UserAttributeProfileUserAttribute>
    List of user attribute configurations.
    userId UserAttributeProfileUserId
    Configuration for mapping the user ID from identity providers.
    name string
    The name of the User Attribute Profile.
    userAttributes UserAttributeProfileUserAttribute[]
    List of user attribute configurations.
    userId UserAttributeProfileUserId
    Configuration for mapping the user ID from identity providers.
    name str
    The name of the User Attribute Profile.
    user_attributes Sequence[UserAttributeProfileUserAttributeArgs]
    List of user attribute configurations.
    user_id UserAttributeProfileUserIdArgs
    Configuration for mapping the user ID from identity providers.
    name String
    The name of the User Attribute Profile.
    userAttributes List<Property Map>
    List of user attribute configurations.
    userId 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.
    ProfileRequired bool
    Whether the attribute is required in the profile.
    OidcMapping UserAttributeProfileUserAttributeOidcMapping
    The OIDC mapping configuration for the user attribute.
    SamlMappings List<string>
    SAML mapping override for this strategy.
    ScimMapping string
    The SCIM mapping for the user attribute.
    StrategyOverrides List<UserAttributeProfileUserAttributeStrategyOverride>
    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.
    ProfileRequired bool
    Whether the attribute is required in the profile.
    OidcMapping UserAttributeProfileUserAttributeOidcMapping
    The OIDC mapping configuration for the user attribute.
    SamlMappings []string
    SAML mapping override for this strategy.
    ScimMapping string
    The SCIM mapping for the user attribute.
    StrategyOverrides []UserAttributeProfileUserAttributeStrategyOverride
    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.
    profileRequired Boolean
    Whether the attribute is required in the profile.
    oidcMapping UserAttributeProfileUserAttributeOidcMapping
    The OIDC mapping configuration for the user attribute.
    samlMappings List<String>
    SAML mapping override for this strategy.
    scimMapping String
    The SCIM mapping for the user attribute.
    strategyOverrides List<UserAttributeProfileUserAttributeStrategyOverride>
    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.
    profileRequired boolean
    Whether the attribute is required in the profile.
    oidcMapping UserAttributeProfileUserAttributeOidcMapping
    The OIDC mapping configuration for the user attribute.
    samlMappings string[]
    SAML mapping override for this strategy.
    scimMapping string
    The SCIM mapping for the user attribute.
    strategyOverrides UserAttributeProfileUserAttributeStrategyOverride[]
    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 UserAttributeProfileUserAttributeOidcMapping
    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[UserAttributeProfileUserAttributeStrategyOverride]
    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.
    profileRequired Boolean
    Whether the attribute is required in the profile.
    oidcMapping Property Map
    The OIDC mapping configuration for the user attribute.
    samlMappings List<String>
    SAML mapping override for this strategy.
    scimMapping String
    The SCIM mapping for the user attribute.
    strategyOverrides List<Property Map>
    Strategy-specific overrides for user attribute mapping.

    UserAttributeProfileUserAttributeOidcMapping, UserAttributeProfileUserAttributeOidcMappingArgs

    Mapping string
    The OIDC mapping field.
    DisplayName string
    Display name for the OIDC mapping.
    Mapping string
    The OIDC mapping field.
    DisplayName string
    Display name for the OIDC mapping.
    mapping String
    The OIDC mapping field.
    displayName String
    Display name for the OIDC mapping.
    mapping string
    The OIDC mapping field.
    displayName 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.
    displayName String
    Display name for the OIDC mapping.

    UserAttributeProfileUserAttributeStrategyOverride, UserAttributeProfileUserAttributeStrategyOverrideArgs

    Strategy string
    The strategy name (e.g., 'oidc', 'samlp', 'ad', etc.).
    OidcMapping UserAttributeProfileUserAttributeStrategyOverrideOidcMapping
    OIDC mapping override for this strategy.
    SamlMappings List<string>
    SAML mapping override for this strategy.
    ScimMapping string
    SCIM mapping override for this strategy.
    Strategy string
    The strategy name (e.g., 'oidc', 'samlp', 'ad', etc.).
    OidcMapping UserAttributeProfileUserAttributeStrategyOverrideOidcMapping
    OIDC mapping override for this strategy.
    SamlMappings []string
    SAML mapping override for this strategy.
    ScimMapping string
    SCIM mapping override for this strategy.
    strategy String
    The strategy name (e.g., 'oidc', 'samlp', 'ad', etc.).
    oidcMapping UserAttributeProfileUserAttributeStrategyOverrideOidcMapping
    OIDC mapping override for this strategy.
    samlMappings List<String>
    SAML mapping override for this strategy.
    scimMapping String
    SCIM mapping override for this strategy.
    strategy string
    The strategy name (e.g., 'oidc', 'samlp', 'ad', etc.).
    oidcMapping UserAttributeProfileUserAttributeStrategyOverrideOidcMapping
    OIDC mapping override for this strategy.
    samlMappings string[]
    SAML mapping override for this strategy.
    scimMapping string
    SCIM mapping override for this strategy.
    strategy str
    The strategy name (e.g., 'oidc', 'samlp', 'ad', etc.).
    oidc_mapping UserAttributeProfileUserAttributeStrategyOverrideOidcMapping
    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.).
    oidcMapping Property Map
    OIDC mapping override for this strategy.
    samlMappings List<String>
    SAML mapping override for this strategy.
    scimMapping String
    SCIM mapping override for this strategy.

    UserAttributeProfileUserAttributeStrategyOverrideOidcMapping, UserAttributeProfileUserAttributeStrategyOverrideOidcMappingArgs

    Mapping string
    The OIDC mapping field.
    DisplayName string
    Display name for the OIDC mapping.
    Mapping string
    The OIDC mapping field.
    DisplayName string
    Display name for the OIDC mapping.
    mapping String
    The OIDC mapping field.
    displayName String
    Display name for the OIDC mapping.
    mapping string
    The OIDC mapping field.
    displayName 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.
    displayName String
    Display name for the OIDC mapping.

    UserAttributeProfileUserId, UserAttributeProfileUserIdArgs

    OidcMapping string
    The OIDC mapping for the user ID.
    SamlMappings List<string>
    The SAML mapping for the user ID.
    ScimMapping string
    The SCIM mapping for the user ID.
    StrategyOverrides List<UserAttributeProfileUserIdStrategyOverride>
    Strategy-specific overrides for user ID mapping.
    OidcMapping string
    The OIDC mapping for the user ID.
    SamlMappings []string
    The SAML mapping for the user ID.
    ScimMapping string
    The SCIM mapping for the user ID.
    StrategyOverrides []UserAttributeProfileUserIdStrategyOverride
    Strategy-specific overrides for user ID mapping.
    oidcMapping String
    The OIDC mapping for the user ID.
    samlMappings List<String>
    The SAML mapping for the user ID.
    scimMapping String
    The SCIM mapping for the user ID.
    strategyOverrides List<UserAttributeProfileUserIdStrategyOverride>
    Strategy-specific overrides for user ID mapping.
    oidcMapping string
    The OIDC mapping for the user ID.
    samlMappings string[]
    The SAML mapping for the user ID.
    scimMapping string
    The SCIM mapping for the user ID.
    strategyOverrides UserAttributeProfileUserIdStrategyOverride[]
    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[UserAttributeProfileUserIdStrategyOverride]
    Strategy-specific overrides for user ID mapping.
    oidcMapping String
    The OIDC mapping for the user ID.
    samlMappings List<String>
    The SAML mapping for the user ID.
    scimMapping String
    The SCIM mapping for the user ID.
    strategyOverrides List<Property Map>
    Strategy-specific overrides for user ID mapping.

    UserAttributeProfileUserIdStrategyOverride, UserAttributeProfileUserIdStrategyOverrideArgs

    Strategy string
    The strategy name (e.g., 'oidc', 'samlp', 'ad', etc.).
    OidcMapping string
    OIDC mapping override for this strategy.
    SamlMappings List<string>
    SAML mapping override for this strategy.
    ScimMapping string
    SCIM mapping override for this strategy.
    Strategy string
    The strategy name (e.g., 'oidc', 'samlp', 'ad', etc.).
    OidcMapping string
    OIDC mapping override for this strategy.
    SamlMappings []string
    SAML mapping override for this strategy.
    ScimMapping string
    SCIM mapping override for this strategy.
    strategy String
    The strategy name (e.g., 'oidc', 'samlp', 'ad', etc.).
    oidcMapping String
    OIDC mapping override for this strategy.
    samlMappings List<String>
    SAML mapping override for this strategy.
    scimMapping String
    SCIM mapping override for this strategy.
    strategy string
    The strategy name (e.g., 'oidc', 'samlp', 'ad', etc.).
    oidcMapping string
    OIDC mapping override for this strategy.
    samlMappings string[]
    SAML mapping override for this strategy.
    scimMapping 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.).
    oidcMapping String
    OIDC mapping override for this strategy.
    samlMappings List<String>
    SAML mapping override for this strategy.
    scimMapping 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.
    auth0 logo
    Auth0 v3.30.0 published on Tuesday, Oct 14, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate