open-nomad/website/pages/docs/commands/acl/token-update.mdx

53 lines
1.3 KiB
Plaintext
Raw Normal View History

2017-09-15 23:54:41 +00:00
---
2020-02-06 23:45:31 +00:00
layout: docs
page_title: 'Commands: acl token update'
sidebar_title: token update
description: |
2017-09-25 19:40:11 +00:00
The token update command is used to update existing ACL tokens.
2017-09-15 23:54:41 +00:00
---
# Command: acl token update
The `acl token update` command is used to update existing ACL tokens.
## Usage
```plaintext
2017-09-15 23:54:41 +00:00
nomad acl token update [options] <token_accessor_id>
```
The `acl token update` command requires an existing token's accessor ID.
## General Options
2020-02-06 23:45:31 +00:00
@include 'general_options.mdx'
2017-09-15 23:54:41 +00:00
## Create Options
- `-name`: Sets the human readable name for the ACL token.
2017-09-15 23:54:41 +00:00
- `-type`: Sets the type of token. Must be one of "client" (default), or
"management".
2017-09-15 23:54:41 +00:00
- `-global`: Toggles the global mode of the token. Global tokens are replicated
to all regions. Defaults false.
2017-09-15 23:54:41 +00:00
- `-policy`: Specifies a policy to associate with the token. Can be specified
multiple times, but only with client type tokens.
2017-09-15 23:54:41 +00:00
## Examples
Update an existing ACL token:
2020-05-01 20:02:21 +00:00
```shell-sessionnomad acl token update -name="my updated token" -policy=foo -policy=bar d532c40a-30f1-695c-19e5-c35b882b0efd
2017-09-15 23:54:41 +00:00
Accessor ID = d532c40a-30f1-695c-19e5-c35b882b0efd
Secret ID = 85310d07-9afa-ef53-0933-0c043cd673c7
Name = my updated token
Type = client
Global = false
Policies = [foo bar]
Create Time = 2017-09-15 05:04:41.814954949 +0000 UTC
Create Index = 8
Modify Index = 8
```