docs: Add -node-identity option to token and role command (#8671)

Document `-node-identity` option which was added in #7970 for
`acl token <create|update>` and `acl role <create|update>` commands.
This commit is contained in:
Blake Covarrubias 2020-09-14 19:02:43 -07:00 committed by hashicorp-ci
parent eb710f4711
commit ed39172b37
4 changed files with 19 additions and 0 deletions

View File

@ -29,6 +29,10 @@ Usage: `consul acl role create [options] [args]`
- `-name=<string>` - The new role's name. This flag is required.
- `-node-identity=<value>` - Name of a node identity to use for this role. May
be specified multiple times. Format is `NODENAME:DATACENTER`. Added in Consul
1.8.1.
- `-policy-id=<value>` - ID of a policy to use for this role. May be specified
multiple times

View File

@ -36,6 +36,10 @@ Usage: `consul acl role update [options] [args]`
- `-name=<string>` - The role name.
- `-node-identity=<value>` - Name of a node identity to use for this role. May
be specified multiple times. Format is `NODENAME:DATACENTER`. Added in Consul
1.8.1.
- `-no-merge` - Do not merge the current role information with what is provided
to the command. Instead overwrite all fields with the exception of the role
ID which is immutable.

View File

@ -36,6 +36,10 @@ Usage: `consul acl token create [options] [args]`
- `-meta` - Indicates that token metadata such as the content hash and raft indices should be shown
for each entry.
- `-node-identity=<value>` - Name of a node identity to use for this role. May
be specified multiple times. Format is `NODENAME:DATACENTER`. Added in Consul
1.8.1.
- `-policy-id=<value>` - ID of a policy to use for this token. May be specified multiple times.
- `-policy-name=<value>` - Name of a policy to use for this token. May be specified multiple times.

View File

@ -28,6 +28,9 @@ Usage: `consul acl token update [options]`
- `-id=<string>` - The Accessor ID of the token to read. It may be specified as a
unique ID prefix but will error if the prefix matches multiple token Accessor IDs
- `merge-node-identities` - Merge the new node identities with the existing node
identities.
- `-merge-policies` - Merge the new policies with the existing policies.
- `-merge-roles` - Merge the new roles with the existing roles.
@ -37,6 +40,10 @@ Usage: `consul acl token update [options]`
- `-meta` - Indicates that token metadata such as the content hash and Raft indices should be
shown for each entry.
- `-node-identity=<value>` - Name of a node identity to use for this role. May
be specified multiple times. Format is `NODENAME:DATACENTER`. Added in Consul
1.8.1.
- `-policy-id=<value>` - ID of a policy to use for this token. May be specified multiple times.
- `-policy-name=<value>` - Name of a policy to use for this token. May be specified multiple times.