Resource: auth0_user

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

Example Usage

resource "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"
}

Schema

Required

Optional

Read-Only

Import

Import is supported using the following syntax:

# This resource can be imported using the user ID.
#
# Example:
terraform import auth0_user.user "auth0|111111111111111111111111"