mirror of
https://github.com/kemko/nomad.git
synced 2026-01-09 11:55:42 +03:00
This PR provides documentation for the ACL Auth Methods CLI commands. Co-authored-by: James Rasell <jrasell@users.noreply.github.com>
31 lines
680 B
Plaintext
31 lines
680 B
Plaintext
---
|
|
layout: docs
|
|
page_title: 'Commands: acl auth-method delete'
|
|
description: The auth-method delete command is used to delete existing ACL Auth Methods.
|
|
---
|
|
|
|
# Command: acl auth-method delete
|
|
|
|
The `acl auth-method delete` command is used to delete existing ACL Auth Methods.
|
|
|
|
## Usage
|
|
|
|
```plaintext
|
|
nomad acl auth-method delete [options] <auth-method_name>
|
|
```
|
|
|
|
The `acl auth-method delete` command requires an existing method's name.
|
|
|
|
## General Options
|
|
|
|
@include 'general_options_no_namespace.mdx'
|
|
|
|
## Examples
|
|
|
|
Delete an existing ACL Auth Method:
|
|
|
|
```shell-session
|
|
$ nomad acl auth-method delete example-auth-method
|
|
ACL auth method example-auth-method successfully deleted
|
|
```
|