--- layout: docs page_title: users update - Command description: >- The "users update" command updates an existing user's information. --- ⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️ > [!IMPORTANT] > **Documentation Update:** Product documentation previously located in `/website` has moved to the [`hashicorp/web-unified-docs`](https://github.com/hashicorp/web-unified-docs) repository, where all product documentation is now centralized. Please make contributions directly to `web-unified-docs`, since changes to `/website` in this repository will not appear on developer.hashicorp.com. ⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️ # users update Command: `users update` The `users update` command lets you update a user's information. ## Example This example updates a user with the ID `u_1234567890` to add the name `devops` and the description `User for DevOps`: ```shell-session $ boundary users update -id u_1234567890 -name "devops" -description "User for DevOps" ``` ## Usage ```shell-session $ boundary users update [options] [args] ``` ### Command options - `-description=` - The description to assign the user. - `-id=` - The ID of the user you want to update. - `-name=` - The name to assign the user. - `-version=` - The version of the user to perform the operation on. If you do not specify a version, the command performs a check-and-set automatically. @include 'cmd-option-note.mdx'