mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-27 04:41:26 -07:00
Adjust booleans in monitoring modules. (#5156)
This commit is contained in:
parent
ddc989ec6d
commit
1b480e9f37
17 changed files with 50 additions and 50 deletions
|
@ -26,16 +26,16 @@ options:
|
|||
- HTTP, HTTPS, or FTP URL in the form (http|https|ftp)://[user[:pass]]@host.domain[:port]/path
|
||||
use_proxy:
|
||||
description:
|
||||
- If C(no), it will not use a proxy, even if one is defined in
|
||||
- If C(false), it will not use a proxy, even if one is defined in
|
||||
an environment variable on the target hosts.
|
||||
type: bool
|
||||
default: 'yes'
|
||||
default: true
|
||||
validate_certs:
|
||||
description:
|
||||
- If C(no), SSL certificates will not be validated. This should only be used
|
||||
- If C(false), SSL certificates will not be validated. This should only be used
|
||||
on personally controlled sites using self-signed certificates.
|
||||
type: bool
|
||||
default: 'yes'
|
||||
default: true
|
||||
url_username:
|
||||
type: str
|
||||
description:
|
||||
|
@ -53,7 +53,7 @@ options:
|
|||
send a 401, logins will fail. This option forces the sending of the Basic authentication header
|
||||
upon initial request.
|
||||
type: bool
|
||||
default: 'no'
|
||||
default: false
|
||||
client_cert:
|
||||
type: path
|
||||
description:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue