mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 04:40:22 -07:00
Only disable cert validation in examples for local network access (#7576)
Only disable cert validation in examples for local network access!
This commit is contained in:
parent
e0346d400f
commit
d9f3e7a2ec
22 changed files with 38 additions and 53 deletions
|
@ -91,7 +91,7 @@ EXAMPLES = '''
|
|||
url: 'http://127.0.0.1:3000'
|
||||
username: 'admin'
|
||||
password: 'smartvm'
|
||||
validate_certs: false
|
||||
validate_certs: false # only do this when you trust the network!
|
||||
|
||||
- name: Add an alert with a "miq expression" to ManageIQ
|
||||
community.general.manageiq_alerts:
|
||||
|
@ -118,7 +118,7 @@ EXAMPLES = '''
|
|||
url: 'http://127.0.0.1:3000'
|
||||
username: 'admin'
|
||||
password: 'smartvm'
|
||||
validate_certs: false
|
||||
validate_certs: false # only do this when you trust the network!
|
||||
|
||||
- name: Delete an alert from ManageIQ
|
||||
community.general.manageiq_alerts:
|
||||
|
@ -128,7 +128,7 @@ EXAMPLES = '''
|
|||
url: 'http://127.0.0.1:3000'
|
||||
username: 'admin'
|
||||
password: 'smartvm'
|
||||
validate_certs: false
|
||||
validate_certs: false # only do this when you trust the network!
|
||||
'''
|
||||
|
||||
RETURN = '''
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue