Manage users who can authenticate to the Pangolin system for the current tenant.
View all registered users and their primary roles.
Syntax:
pangolin-admin list-usersCreate a new user account.
Warning
The Root User can ONLY create a tenant-admin for a new tenant. They cannot create regular tenant-user accounts. Regular user management is the responsibility of the Tenant Admin.
Syntax:
pangolin-admin create-user <username> --email <email> --role <role> [--password <password>] [--tenant-id <uuid>]Options:
--role: Assign a role (root,tenant-admin,tenant-user).--password: Provide password directly (omitting will trigger a secure prompt).--tenant-id: Target a specific tenant (Root only).
Example:
pangolin-admin create-user alice --email alice@acme.com --role tenant-userModify an existing user's profile or status.
Syntax:
pangolin-admin update-user --id <uuid> [--username <name>] [--email <email>] [--active <true|false>]Example:
pangolin-admin update-user --id "user-uuid" --active falseRemove a user account.
Syntax:
pangolin-admin delete-user <username>Example:
pangolin-admin delete-user bob