mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 04:40:22 -07:00
modules: fix examples to use FQCN (#644)
* modules: fix examples to use FQCN * fix * fix * fix
This commit is contained in:
parent
8b92e0454d
commit
41cfdda6a3
533 changed files with 2130 additions and 2130 deletions
|
@ -77,7 +77,7 @@ requirements:
|
|||
|
||||
EXAMPLES = """
|
||||
- name: Create an ACL with rules
|
||||
consul_acl:
|
||||
community.general.consul_acl:
|
||||
host: consul1.example.com
|
||||
mgmt_token: some_management_acl
|
||||
name: Foo access
|
||||
|
@ -88,7 +88,7 @@ EXAMPLES = """
|
|||
policy: deny
|
||||
|
||||
- name: Create an ACL with a specific token
|
||||
consul_acl:
|
||||
community.general.consul_acl:
|
||||
host: consul1.example.com
|
||||
mgmt_token: some_management_acl
|
||||
name: Foo access
|
||||
|
@ -98,7 +98,7 @@ EXAMPLES = """
|
|||
policy: read
|
||||
|
||||
- name: Update the rules associated to an ACL token
|
||||
consul_acl:
|
||||
community.general.consul_acl:
|
||||
host: consul1.example.com
|
||||
mgmt_token: some_management_acl
|
||||
name: Foo access
|
||||
|
@ -122,7 +122,7 @@ EXAMPLES = """
|
|||
policy: write
|
||||
|
||||
- name: Remove a token
|
||||
consul_acl:
|
||||
community.general.consul_acl:
|
||||
host: consul1.example.com
|
||||
mgmt_token: some_management_acl
|
||||
token: 172bd5c8-9fe9-11e4-b1b0-3c15c2c9fd5e
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue