auth0.User
Explore with Pulumi AI
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",
userId: "12345",
username: "unique_username",
name: "Firstname Lastname",
nickname: "some.nickname",
email: "test@test.com",
emailVerified: true,
password: "passpass$12$12",
picture: "https://www.example.com/a-valid-picture-url.jpg",
});
import pulumi
import pulumi_auth0 as auth0
user = auth0.User("user",
connection_name="Username-Password-Authentication",
user_id="12345",
username="unique_username",
name="Firstname Lastname",
nickname="some.nickname",
email="test@test.com",
email_verified=True,
password="passpass$12$12",
picture="https://www.example.com/a-valid-picture-url.jpg")
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"),
UserId: pulumi.String("12345"),
Username: pulumi.String("unique_username"),
Name: pulumi.String("Firstname Lastname"),
Nickname: pulumi.String("some.nickname"),
Email: pulumi.String("test@test.com"),
EmailVerified: pulumi.Bool(true),
Password: pulumi.String("passpass$12$12"),
Picture: pulumi.String("https://www.example.com/a-valid-picture-url.jpg"),
})
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",
UserId = "12345",
Username = "unique_username",
Name = "Firstname Lastname",
Nickname = "some.nickname",
Email = "test@test.com",
EmailVerified = true,
Password = "passpass$12$12",
Picture = "https://www.example.com/a-valid-picture-url.jpg",
});
});
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")
.userId("12345")
.username("unique_username")
.name("Firstname Lastname")
.nickname("some.nickname")
.email("test@test.com")
.emailVerified(true)
.password("passpass$12$12")
.picture("https://www.example.com/a-valid-picture-url.jpg")
.build());
}
}
resources:
user:
type: auth0:User
properties:
connectionName: Username-Password-Authentication
userId: '12345'
username: unique_username
name: Firstname Lastname
nickname: some.nickname
email: test@test.com
emailVerified: true
password: passpass$12$12
picture: https://www.example.com/a-valid-picture-url.jpg
Create User Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new User(name: string, args: UserArgs, opts?: CustomResourceOptions);
@overload
def User(resource_name: str,
args: UserArgs,
opts: Optional[ResourceOptions] = None)
@overload
def User(resource_name: str,
opts: Optional[ResourceOptions] = None,
connection_name: Optional[str] = None,
nickname: Optional[str] = None,
name: Optional[str] = None,
email: Optional[str] = None,
email_verified: Optional[bool] = None,
password: Optional[str] = None,
given_name: Optional[str] = None,
blocked: Optional[bool] = None,
app_metadata: Optional[str] = None,
family_name: 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)
func NewUser(ctx *Context, name string, args UserArgs, opts ...ResourceOption) (*User, error)
public User(string name, UserArgs args, CustomResourceOptions? opts = null)
type: auth0:User
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 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.
Constructor example
The following reference example uses placeholder values for all input properties.
var userResource = new Auth0.User("userResource", new()
{
ConnectionName = "string",
Nickname = "string",
Name = "string",
Email = "string",
EmailVerified = false,
Password = "string",
GivenName = "string",
Blocked = false,
AppMetadata = "string",
FamilyName = "string",
PhoneNumber = "string",
PhoneVerified = false,
Picture = "string",
UserId = "string",
UserMetadata = "string",
Username = "string",
VerifyEmail = false,
});
example, err := auth0.NewUser(ctx, "userResource", &auth0.UserArgs{
ConnectionName: pulumi.String("string"),
Nickname: pulumi.String("string"),
Name: pulumi.String("string"),
Email: pulumi.String("string"),
EmailVerified: pulumi.Bool(false),
Password: pulumi.String("string"),
GivenName: pulumi.String("string"),
Blocked: pulumi.Bool(false),
AppMetadata: pulumi.String("string"),
FamilyName: pulumi.String("string"),
PhoneNumber: pulumi.String("string"),
PhoneVerified: pulumi.Bool(false),
Picture: pulumi.String("string"),
UserId: pulumi.String("string"),
UserMetadata: pulumi.String("string"),
Username: pulumi.String("string"),
VerifyEmail: pulumi.Bool(false),
})
var userResource = new User("userResource", UserArgs.builder()
.connectionName("string")
.nickname("string")
.name("string")
.email("string")
.emailVerified(false)
.password("string")
.givenName("string")
.blocked(false)
.appMetadata("string")
.familyName("string")
.phoneNumber("string")
.phoneVerified(false)
.picture("string")
.userId("string")
.userMetadata("string")
.username("string")
.verifyEmail(false)
.build());
user_resource = auth0.User("userResource",
connection_name="string",
nickname="string",
name="string",
email="string",
email_verified=False,
password="string",
given_name="string",
blocked=False,
app_metadata="string",
family_name="string",
phone_number="string",
phone_verified=False,
picture="string",
user_id="string",
user_metadata="string",
username="string",
verify_email=False)
const userResource = new auth0.User("userResource", {
connectionName: "string",
nickname: "string",
name: "string",
email: "string",
emailVerified: false,
password: "string",
givenName: "string",
blocked: false,
appMetadata: "string",
familyName: "string",
phoneNumber: "string",
phoneVerified: false,
picture: "string",
userId: "string",
userMetadata: "string",
username: "string",
verifyEmail: false,
});
type: auth0:User
properties:
appMetadata: string
blocked: false
connectionName: string
email: string
emailVerified: false
familyName: string
givenName: string
name: string
nickname: string
password: string
phoneNumber: string
phoneVerified: false
picture: string
userId: string
userMetadata: string
username: string
verifyEmail: false
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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The User resource accepts the following input properties:
- Connection
Name string - Name of the connection from which the user information was sourced.
- App
Metadata 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.
- Email
Verified bool - Indicates whether the email address has been verified.
- Family
Name 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.
- Given
Name 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).
- Phone
Number string - 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 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.
- User
Id string - ID of the user.
- User
Metadata 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.
- Verify
Email bool - Indicates whether the user will receive a verification email after creation. Overrides behavior of
email_verified
parameter.
- Connection
Name string - Name of the connection from which the user information was sourced.
- App
Metadata 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.
- Email
Verified bool - Indicates whether the email address has been verified.
- Family
Name 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.
- Given
Name 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).
- Phone
Number string - 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 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.
- User
Id string - ID of the user.
- User
Metadata 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.
- Verify
Email bool - Indicates whether the user will receive a verification email after creation. Overrides behavior of
email_verified
parameter.
- connection
Name String - Name of the connection from which the user information was sourced.
- app
Metadata 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.
- email
Verified Boolean - Indicates whether the email address has been verified.
- family
Name 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.
- given
Name 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).
- phone
Number String - Phone number for the user; follows the E.164 recommendation. Used for SMS connections.
- phone
Verified 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.
- user
Id String - ID of the user.
- user
Metadata 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.
- verify
Email Boolean - Indicates whether the user will receive a verification email after creation. Overrides behavior of
email_verified
parameter.
- connection
Name string - Name of the connection from which the user information was sourced.
- app
Metadata 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.
- email
Verified boolean - Indicates whether the email address has been verified.
- family
Name 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.
- given
Name 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).
- phone
Number string - Phone number for the user; follows the E.164 recommendation. Used for SMS connections.
- phone
Verified 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.
- user
Id string - ID of the user.
- user
Metadata 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.
- verify
Email 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.
- connection
Name String - Name of the connection from which the user information was sourced.
- app
Metadata 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.
- email
Verified Boolean - Indicates whether the email address has been verified.
- family
Name 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.
- given
Name 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).
- phone
Number String - Phone number for the user; follows the E.164 recommendation. Used for SMS connections.
- phone
Verified 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.
- user
Id String - ID of the user.
- user
Metadata 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.
- verify
Email 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.
- App
Metadata 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.
- Connection
Name string - Name of the connection from which the user information was sourced.
- Email string
- Email address of the user.
- Email
Verified bool - Indicates whether the email address has been verified.
- Family
Name 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.
- Given
Name 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).
- Phone
Number string - 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 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.
- User
Id string - ID of the user.
- User
Metadata 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.
- Verify
Email bool - Indicates whether the user will receive a verification email after creation. Overrides behavior of
email_verified
parameter.
- App
Metadata 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.
- Connection
Name string - Name of the connection from which the user information was sourced.
- Email string
- Email address of the user.
- Email
Verified bool - Indicates whether the email address has been verified.
- Family
Name 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.
- Given
Name 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).
- Phone
Number string - 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 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.
- User
Id string - ID of the user.
- User
Metadata 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.
- Verify
Email bool - Indicates whether the user will receive a verification email after creation. Overrides behavior of
email_verified
parameter.
- app
Metadata 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.
- connection
Name String - Name of the connection from which the user information was sourced.
- email String
- Email address of the user.
- email
Verified Boolean - Indicates whether the email address has been verified.
- family
Name 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.
- given
Name 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).
- phone
Number String - Phone number for the user; follows the E.164 recommendation. Used for SMS connections.
- phone
Verified 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.
- user
Id String - ID of the user.
- user
Metadata 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.
- verify
Email Boolean - Indicates whether the user will receive a verification email after creation. Overrides behavior of
email_verified
parameter.
- app
Metadata 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.
- connection
Name string - Name of the connection from which the user information was sourced.
- email string
- Email address of the user.
- email
Verified boolean - Indicates whether the email address has been verified.
- family
Name 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.
- given
Name 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).
- phone
Number string - Phone number for the user; follows the E.164 recommendation. Used for SMS connections.
- phone
Verified 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.
- user
Id string - ID of the user.
- user
Metadata 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.
- verify
Email 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.
- app
Metadata 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.
- connection
Name String - Name of the connection from which the user information was sourced.
- email String
- Email address of the user.
- email
Verified Boolean - Indicates whether the email address has been verified.
- family
Name 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.
- given
Name 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).
- phone
Number String - Phone number for the user; follows the E.164 recommendation. Used for SMS connections.
- phone
Verified 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.
- user
Id String - ID of the user.
- user
Metadata 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.
- verify
Email 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"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Auth0 pulumi/pulumi-auth0
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
auth0
Terraform Provider.