870e3f58a6
* changed list indicator from * -> - * moved in-text links to reference links * made commands `plaintext` * made command examples `console` * rewrapped text
38 lines
836 B
Plaintext
38 lines
836 B
Plaintext
---
|
|
layout: "docs"
|
|
page_title: "Commands: acl policy apply"
|
|
sidebar_current: "docs-commands-acl-policy-apply"
|
|
description: >
|
|
The policy apply command is used to create or update ACL policies.
|
|
---
|
|
|
|
# Command: acl policy apply
|
|
|
|
The `acl policy apply` command is used to create or update ACL policies.
|
|
|
|
## Usage
|
|
|
|
```plaintext
|
|
nomad acl policy apply [options] <name> <path>
|
|
```
|
|
|
|
The `acl policy apply` command requires two arguments, the policy name and path
|
|
to file. The policy can be read from stdin by setting the path to "-".
|
|
|
|
## General Options
|
|
|
|
<%= partial "docs/commands/_general_options" %>
|
|
|
|
## Apply Options
|
|
|
|
- `-description`: Sets the human readable description for the ACL policy.
|
|
|
|
## Examples
|
|
|
|
Create a new ACL Policy:
|
|
|
|
```shell
|
|
$ nomad acl policy apply my-policy my-policy.json
|
|
Successfully wrote 'my-policy' ACL policy!
|
|
```
|