1. Packages
  2. Auth0
  3. API Docs
  4. User
Auth0 v3.3.1 published on Thursday, Mar 14, 2024 by Pulumi

auth0.User

Explore with Pulumi AI

auth0 logo
Auth0 v3.3.1 published on Thursday, Mar 14, 2024 by Pulumi

    With this resource, you can manage user identities, including resetting passwords, and creating, provisioning, blocking, and deleting users.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as auth0 from "@pulumi/auth0";
    
    const user = new auth0.User("user", {
        connectionName: "Username-Password-Authentication",
        email: "test@test.com",
        emailVerified: true,
        nickname: "some.nickname",
        password: "passpass$12$12",
        picture: "https://www.example.com/a-valid-picture-url.jpg",
        userId: "12345",
        username: "unique_username",
    });
    
    import pulumi
    import pulumi_auth0 as auth0
    
    user = auth0.User("user",
        connection_name="Username-Password-Authentication",
        email="test@test.com",
        email_verified=True,
        nickname="some.nickname",
        password="passpass$12$12",
        picture="https://www.example.com/a-valid-picture-url.jpg",
        user_id="12345",
        username="unique_username")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-auth0/sdk/v3/go/auth0"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := auth0.NewUser(ctx, "user", &auth0.UserArgs{
    			ConnectionName: pulumi.String("Username-Password-Authentication"),
    			Email:          pulumi.String("test@test.com"),
    			EmailVerified:  pulumi.Bool(true),
    			Nickname:       pulumi.String("some.nickname"),
    			Password:       pulumi.String("passpass$12$12"),
    			Picture:        pulumi.String("https://www.example.com/a-valid-picture-url.jpg"),
    			UserId:         pulumi.String("12345"),
    			Username:       pulumi.String("unique_username"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Auth0 = Pulumi.Auth0;
    
    return await Deployment.RunAsync(() => 
    {
        var user = new Auth0.User("user", new()
        {
            ConnectionName = "Username-Password-Authentication",
            Email = "test@test.com",
            EmailVerified = true,
            Nickname = "some.nickname",
            Password = "passpass$12$12",
            Picture = "https://www.example.com/a-valid-picture-url.jpg",
            UserId = "12345",
            Username = "unique_username",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.auth0.User;
    import com.pulumi.auth0.UserArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var user = new User("user", UserArgs.builder()        
                .connectionName("Username-Password-Authentication")
                .email("test@test.com")
                .emailVerified(true)
                .nickname("some.nickname")
                .password("passpass$12$12")
                .picture("https://www.example.com/a-valid-picture-url.jpg")
                .userId("12345")
                .username("unique_username")
                .build());
    
        }
    }
    
    resources:
      user:
        type: auth0:User
        properties:
          connectionName: Username-Password-Authentication
          email: test@test.com
          emailVerified: true
          nickname: some.nickname
          password: passpass$12$12
          picture: https://www.example.com/a-valid-picture-url.jpg
          userId: '12345'
          username: unique_username
    

    Create User Resource

    new User(name: string, args: UserArgs, opts?: CustomResourceOptions);
    @overload
    def User(resource_name: str,
             opts: Optional[ResourceOptions] = None,
             app_metadata: Optional[str] = None,
             blocked: Optional[bool] = None,
             connection_name: Optional[str] = None,
             email: Optional[str] = None,
             email_verified: Optional[bool] = None,
             family_name: Optional[str] = None,
             given_name: Optional[str] = None,
             name: Optional[str] = None,
             nickname: Optional[str] = None,
             password: Optional[str] = None,
             phone_number: Optional[str] = None,
             phone_verified: Optional[bool] = None,
             picture: Optional[str] = None,
             user_id: Optional[str] = None,
             user_metadata: Optional[str] = None,
             username: Optional[str] = None,
             verify_email: Optional[bool] = None)
    @overload
    def User(resource_name: str,
             args: UserArgs,
             opts: Optional[ResourceOptions] = None)
    func NewUser(ctx *Context, name string, args UserArgs, opts ...ResourceOption) (*User, error)
    public User(string name, UserArgs args, CustomResourceOptions? opts = null)
    public User(String name, UserArgs args)
    public User(String name, UserArgs args, CustomResourceOptions options)
    
    type: auth0:User
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args UserArgs
    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 UserArgs
    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 UserArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args UserArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args UserArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    User Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The User resource accepts the following input properties:

    ConnectionName string
    Name of the connection from which the user information was sourced.
    AppMetadata string
    Custom fields that store info about the user that impact the user's core functionality, such as how an application functions or what the user can access. Examples include support plans and IDs for external accounts.
    Blocked bool
    Indicates whether the user is blocked or not.
    Email string
    Email address of the user.
    EmailVerified bool
    Indicates whether the email address has been verified.
    FamilyName string
    Family name of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    GivenName string
    Given name of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    Name string
    Name of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    Nickname string
    Preferred nickname or alias of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    Password string
    Initial password for this user. Required for non-passwordless connections (SMS and email).
    PhoneNumber string
    Phone number for the user; follows the E.164 recommendation. Used for SMS connections.
    PhoneVerified bool
    Indicates whether the phone number has been verified.
    Picture string
    Picture of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    UserId string
    ID of the user.
    UserMetadata string
    Custom fields that store info about the user that does not impact a user's core functionality. Examples include work address, home address, and user preferences.
    Username string
    Username of the user. Only valid if the connection requires a username.
    VerifyEmail bool
    Indicates whether the user will receive a verification email after creation. Overrides behavior of email_verified parameter.
    ConnectionName string
    Name of the connection from which the user information was sourced.
    AppMetadata string
    Custom fields that store info about the user that impact the user's core functionality, such as how an application functions or what the user can access. Examples include support plans and IDs for external accounts.
    Blocked bool
    Indicates whether the user is blocked or not.
    Email string
    Email address of the user.
    EmailVerified bool
    Indicates whether the email address has been verified.
    FamilyName string
    Family name of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    GivenName string
    Given name of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    Name string
    Name of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    Nickname string
    Preferred nickname or alias of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    Password string
    Initial password for this user. Required for non-passwordless connections (SMS and email).
    PhoneNumber string
    Phone number for the user; follows the E.164 recommendation. Used for SMS connections.
    PhoneVerified bool
    Indicates whether the phone number has been verified.
    Picture string
    Picture of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    UserId string
    ID of the user.
    UserMetadata string
    Custom fields that store info about the user that does not impact a user's core functionality. Examples include work address, home address, and user preferences.
    Username string
    Username of the user. Only valid if the connection requires a username.
    VerifyEmail bool
    Indicates whether the user will receive a verification email after creation. Overrides behavior of email_verified parameter.
    connectionName String
    Name of the connection from which the user information was sourced.
    appMetadata String
    Custom fields that store info about the user that impact the user's core functionality, such as how an application functions or what the user can access. Examples include support plans and IDs for external accounts.
    blocked Boolean
    Indicates whether the user is blocked or not.
    email String
    Email address of the user.
    emailVerified Boolean
    Indicates whether the email address has been verified.
    familyName String
    Family name of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    givenName String
    Given name of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    name String
    Name of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    nickname String
    Preferred nickname or alias of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    password String
    Initial password for this user. Required for non-passwordless connections (SMS and email).
    phoneNumber String
    Phone number for the user; follows the E.164 recommendation. Used for SMS connections.
    phoneVerified Boolean
    Indicates whether the phone number has been verified.
    picture String
    Picture of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    userId String
    ID of the user.
    userMetadata String
    Custom fields that store info about the user that does not impact a user's core functionality. Examples include work address, home address, and user preferences.
    username String
    Username of the user. Only valid if the connection requires a username.
    verifyEmail Boolean
    Indicates whether the user will receive a verification email after creation. Overrides behavior of email_verified parameter.
    connectionName string
    Name of the connection from which the user information was sourced.
    appMetadata string
    Custom fields that store info about the user that impact the user's core functionality, such as how an application functions or what the user can access. Examples include support plans and IDs for external accounts.
    blocked boolean
    Indicates whether the user is blocked or not.
    email string
    Email address of the user.
    emailVerified boolean
    Indicates whether the email address has been verified.
    familyName string
    Family name of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    givenName string
    Given name of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    name string
    Name of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    nickname string
    Preferred nickname or alias of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    password string
    Initial password for this user. Required for non-passwordless connections (SMS and email).
    phoneNumber string
    Phone number for the user; follows the E.164 recommendation. Used for SMS connections.
    phoneVerified boolean
    Indicates whether the phone number has been verified.
    picture string
    Picture of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    userId string
    ID of the user.
    userMetadata string
    Custom fields that store info about the user that does not impact a user's core functionality. Examples include work address, home address, and user preferences.
    username string
    Username of the user. Only valid if the connection requires a username.
    verifyEmail boolean
    Indicates whether the user will receive a verification email after creation. Overrides behavior of email_verified parameter.
    connection_name str
    Name of the connection from which the user information was sourced.
    app_metadata str
    Custom fields that store info about the user that impact the user's core functionality, such as how an application functions or what the user can access. Examples include support plans and IDs for external accounts.
    blocked bool
    Indicates whether the user is blocked or not.
    email str
    Email address of the user.
    email_verified bool
    Indicates whether the email address has been verified.
    family_name str
    Family name of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    given_name str
    Given name of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    name str
    Name of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    nickname str
    Preferred nickname or alias of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    password str
    Initial password for this user. Required for non-passwordless connections (SMS and email).
    phone_number str
    Phone number for the user; follows the E.164 recommendation. Used for SMS connections.
    phone_verified bool
    Indicates whether the phone number has been verified.
    picture str
    Picture of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    user_id str
    ID of the user.
    user_metadata str
    Custom fields that store info about the user that does not impact a user's core functionality. Examples include work address, home address, and user preferences.
    username str
    Username of the user. Only valid if the connection requires a username.
    verify_email bool
    Indicates whether the user will receive a verification email after creation. Overrides behavior of email_verified parameter.
    connectionName String
    Name of the connection from which the user information was sourced.
    appMetadata String
    Custom fields that store info about the user that impact the user's core functionality, such as how an application functions or what the user can access. Examples include support plans and IDs for external accounts.
    blocked Boolean
    Indicates whether the user is blocked or not.
    email String
    Email address of the user.
    emailVerified Boolean
    Indicates whether the email address has been verified.
    familyName String
    Family name of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    givenName String
    Given name of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    name String
    Name of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    nickname String
    Preferred nickname or alias of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    password String
    Initial password for this user. Required for non-passwordless connections (SMS and email).
    phoneNumber String
    Phone number for the user; follows the E.164 recommendation. Used for SMS connections.
    phoneVerified Boolean
    Indicates whether the phone number has been verified.
    picture String
    Picture of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    userId String
    ID of the user.
    userMetadata String
    Custom fields that store info about the user that does not impact a user's core functionality. Examples include work address, home address, and user preferences.
    username String
    Username of the user. Only valid if the connection requires a username.
    verifyEmail Boolean
    Indicates whether the user will receive a verification email after creation. Overrides behavior of email_verified parameter.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the User 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 User Resource

    Get an existing User 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?: UserState, opts?: CustomResourceOptions): User
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            app_metadata: Optional[str] = None,
            blocked: Optional[bool] = None,
            connection_name: Optional[str] = None,
            email: Optional[str] = None,
            email_verified: Optional[bool] = None,
            family_name: Optional[str] = None,
            given_name: Optional[str] = None,
            name: Optional[str] = None,
            nickname: Optional[str] = None,
            password: Optional[str] = None,
            phone_number: Optional[str] = None,
            phone_verified: Optional[bool] = None,
            picture: Optional[str] = None,
            user_id: Optional[str] = None,
            user_metadata: Optional[str] = None,
            username: Optional[str] = None,
            verify_email: Optional[bool] = None) -> User
    func GetUser(ctx *Context, name string, id IDInput, state *UserState, opts ...ResourceOption) (*User, error)
    public static User Get(string name, Input<string> id, UserState? state, CustomResourceOptions? opts = null)
    public static User get(String name, Output<String> id, UserState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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:
    AppMetadata string
    Custom fields that store info about the user that impact the user's core functionality, such as how an application functions or what the user can access. Examples include support plans and IDs for external accounts.
    Blocked bool
    Indicates whether the user is blocked or not.
    ConnectionName string
    Name of the connection from which the user information was sourced.
    Email string
    Email address of the user.
    EmailVerified bool
    Indicates whether the email address has been verified.
    FamilyName string
    Family name of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    GivenName string
    Given name of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    Name string
    Name of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    Nickname string
    Preferred nickname or alias of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    Password string
    Initial password for this user. Required for non-passwordless connections (SMS and email).
    PhoneNumber string
    Phone number for the user; follows the E.164 recommendation. Used for SMS connections.
    PhoneVerified bool
    Indicates whether the phone number has been verified.
    Picture string
    Picture of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    UserId string
    ID of the user.
    UserMetadata string
    Custom fields that store info about the user that does not impact a user's core functionality. Examples include work address, home address, and user preferences.
    Username string
    Username of the user. Only valid if the connection requires a username.
    VerifyEmail bool
    Indicates whether the user will receive a verification email after creation. Overrides behavior of email_verified parameter.
    AppMetadata string
    Custom fields that store info about the user that impact the user's core functionality, such as how an application functions or what the user can access. Examples include support plans and IDs for external accounts.
    Blocked bool
    Indicates whether the user is blocked or not.
    ConnectionName string
    Name of the connection from which the user information was sourced.
    Email string
    Email address of the user.
    EmailVerified bool
    Indicates whether the email address has been verified.
    FamilyName string
    Family name of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    GivenName string
    Given name of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    Name string
    Name of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    Nickname string
    Preferred nickname or alias of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    Password string
    Initial password for this user. Required for non-passwordless connections (SMS and email).
    PhoneNumber string
    Phone number for the user; follows the E.164 recommendation. Used for SMS connections.
    PhoneVerified bool
    Indicates whether the phone number has been verified.
    Picture string
    Picture of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    UserId string
    ID of the user.
    UserMetadata string
    Custom fields that store info about the user that does not impact a user's core functionality. Examples include work address, home address, and user preferences.
    Username string
    Username of the user. Only valid if the connection requires a username.
    VerifyEmail bool
    Indicates whether the user will receive a verification email after creation. Overrides behavior of email_verified parameter.
    appMetadata String
    Custom fields that store info about the user that impact the user's core functionality, such as how an application functions or what the user can access. Examples include support plans and IDs for external accounts.
    blocked Boolean
    Indicates whether the user is blocked or not.
    connectionName String
    Name of the connection from which the user information was sourced.
    email String
    Email address of the user.
    emailVerified Boolean
    Indicates whether the email address has been verified.
    familyName String
    Family name of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    givenName String
    Given name of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    name String
    Name of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    nickname String
    Preferred nickname or alias of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    password String
    Initial password for this user. Required for non-passwordless connections (SMS and email).
    phoneNumber String
    Phone number for the user; follows the E.164 recommendation. Used for SMS connections.
    phoneVerified Boolean
    Indicates whether the phone number has been verified.
    picture String
    Picture of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    userId String
    ID of the user.
    userMetadata String
    Custom fields that store info about the user that does not impact a user's core functionality. Examples include work address, home address, and user preferences.
    username String
    Username of the user. Only valid if the connection requires a username.
    verifyEmail Boolean
    Indicates whether the user will receive a verification email after creation. Overrides behavior of email_verified parameter.
    appMetadata string
    Custom fields that store info about the user that impact the user's core functionality, such as how an application functions or what the user can access. Examples include support plans and IDs for external accounts.
    blocked boolean
    Indicates whether the user is blocked or not.
    connectionName string
    Name of the connection from which the user information was sourced.
    email string
    Email address of the user.
    emailVerified boolean
    Indicates whether the email address has been verified.
    familyName string
    Family name of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    givenName string
    Given name of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    name string
    Name of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    nickname string
    Preferred nickname or alias of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    password string
    Initial password for this user. Required for non-passwordless connections (SMS and email).
    phoneNumber string
    Phone number for the user; follows the E.164 recommendation. Used for SMS connections.
    phoneVerified boolean
    Indicates whether the phone number has been verified.
    picture string
    Picture of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    userId string
    ID of the user.
    userMetadata string
    Custom fields that store info about the user that does not impact a user's core functionality. Examples include work address, home address, and user preferences.
    username string
    Username of the user. Only valid if the connection requires a username.
    verifyEmail boolean
    Indicates whether the user will receive a verification email after creation. Overrides behavior of email_verified parameter.
    app_metadata str
    Custom fields that store info about the user that impact the user's core functionality, such as how an application functions or what the user can access. Examples include support plans and IDs for external accounts.
    blocked bool
    Indicates whether the user is blocked or not.
    connection_name str
    Name of the connection from which the user information was sourced.
    email str
    Email address of the user.
    email_verified bool
    Indicates whether the email address has been verified.
    family_name str
    Family name of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    given_name str
    Given name of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    name str
    Name of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    nickname str
    Preferred nickname or alias of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    password str
    Initial password for this user. Required for non-passwordless connections (SMS and email).
    phone_number str
    Phone number for the user; follows the E.164 recommendation. Used for SMS connections.
    phone_verified bool
    Indicates whether the phone number has been verified.
    picture str
    Picture of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    user_id str
    ID of the user.
    user_metadata str
    Custom fields that store info about the user that does not impact a user's core functionality. Examples include work address, home address, and user preferences.
    username str
    Username of the user. Only valid if the connection requires a username.
    verify_email bool
    Indicates whether the user will receive a verification email after creation. Overrides behavior of email_verified parameter.
    appMetadata String
    Custom fields that store info about the user that impact the user's core functionality, such as how an application functions or what the user can access. Examples include support plans and IDs for external accounts.
    blocked Boolean
    Indicates whether the user is blocked or not.
    connectionName String
    Name of the connection from which the user information was sourced.
    email String
    Email address of the user.
    emailVerified Boolean
    Indicates whether the email address has been verified.
    familyName String
    Family name of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    givenName String
    Given name of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    name String
    Name of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    nickname String
    Preferred nickname or alias of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    password String
    Initial password for this user. Required for non-passwordless connections (SMS and email).
    phoneNumber String
    Phone number for the user; follows the E.164 recommendation. Used for SMS connections.
    phoneVerified Boolean
    Indicates whether the phone number has been verified.
    picture String
    Picture of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: Configure Identity Provider Connection for User Profile Updates.
    userId String
    ID of the user.
    userMetadata String
    Custom fields that store info about the user that does not impact a user's core functionality. Examples include work address, home address, and user preferences.
    username String
    Username of the user. Only valid if the connection requires a username.
    verifyEmail Boolean
    Indicates whether the user will receive a verification email after creation. Overrides behavior of email_verified parameter.

    Import

    This resource can be imported using the user ID.

    Example:

    $ pulumi import auth0:index/user:User user "auth0|111111111111111111111111"
    

    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.3.1 published on Thursday, Mar 14, 2024 by Pulumi