Modify existing Vultr user account settings including permissions, email, and other attributes.
The vultr-cli user update
command modifies existing user account settings on Vultr, allowing administrators to change permissions, email, or other user attributes.
$ vultr-cli user update <User ID> [flags]
# Full Example
$ vultr-cli users update --email="vultrcli@vultr.com" --name="Vultr-cli" --password="Password123" \
--api-enabled="false" --acl="manage_users,billing"
# Shortened with alias commands
$ vultr-cli u u -e="vultrcli@vultr.com" -n="Vultr-cli" -p="Password123" \
--api-enabled="false" --acl="manage_users,billing"
Shorthand | Long Version | Description |
---|
| -l | --acl | User access control list in a comma separated list. Possible values: manage_users subscriptions_view subscriptions billing support provisioning dns abuse upgrade firewall alerts objstore loadbalancer | | - | --api-enabled | API access enabled | | -e | --email | User email | | -n | --name | User name | | -p | --password | User password |
No comments yet.