mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-24 13:50: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
|
@ -83,7 +83,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: Create a tenant in ManageIQ
|
||||
community.general.manageiq_tenant:
|
||||
|
@ -94,7 +94,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 a tenant in ManageIQ
|
||||
community.general.manageiq_tenant:
|
||||
|
@ -105,7 +105,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: Set tenant quota for cpu_allocated, mem_allocated, remove quota for vms_allocated
|
||||
community.general.manageiq_tenant:
|
||||
|
@ -119,7 +119,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 a tenant in ManageIQ using a token
|
||||
|
@ -130,7 +130,7 @@ EXAMPLES = '''
|
|||
manageiq_connection:
|
||||
url: 'http://127.0.0.1:3000'
|
||||
token: 'sometoken'
|
||||
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