mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Native YAML - monitoring/boundary_meter (#18791)
* Native YAML - monitoring/boundary_meter * Fix apikey
This commit is contained in:
parent
327cff7274
commit
f8832bf302
1 changed files with 10 additions and 3 deletions
|
@ -72,11 +72,18 @@ notes:
|
||||||
|
|
||||||
EXAMPLES='''
|
EXAMPLES='''
|
||||||
- name: Create meter
|
- name: Create meter
|
||||||
boundary_meter: apiid=AAAAAA api_key=BBBBBB state=present name={{ inventory_hostname }}"
|
boundary_meter:
|
||||||
|
apiid: AAAAAA
|
||||||
|
apikey: BBBBBB
|
||||||
|
state: present
|
||||||
|
name: '{{ inventory_hostname }}'
|
||||||
|
|
||||||
- name: Delete meter
|
- name: Delete meter
|
||||||
boundary_meter: apiid=AAAAAA api_key=BBBBBB state=absent name={{ inventory_hostname }}"
|
boundary_meter:
|
||||||
|
apiid: AAAAAA
|
||||||
|
apikey: BBBBBB
|
||||||
|
state: absent
|
||||||
|
name: '{{ inventory_hostname }}'
|
||||||
'''
|
'''
|
||||||
|
|
||||||
import base64
|
import base64
|
||||||
|
|
Loading…
Reference in a new issue