mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 12:50:22 -07:00
Normalize more booleans. (#5247)
This commit is contained in:
parent
570445adc4
commit
015566fb06
170 changed files with 465 additions and 465 deletions
|
@ -31,13 +31,13 @@ options:
|
|||
- Identifier of the module as listed by C(apache2ctl -M).
|
||||
This is optional and usually determined automatically by the common convention of
|
||||
appending C(_module) to I(name) as well as custom exception for popular modules.
|
||||
required: False
|
||||
required: false
|
||||
force:
|
||||
description:
|
||||
- Force disabling of default modules and override Debian warnings.
|
||||
required: false
|
||||
type: bool
|
||||
default: False
|
||||
default: false
|
||||
state:
|
||||
type: str
|
||||
description:
|
||||
|
@ -48,7 +48,7 @@ options:
|
|||
description:
|
||||
- Ignore configuration checks about inconsistent module configuration. Especially for mpm_* modules.
|
||||
type: bool
|
||||
default: False
|
||||
default: false
|
||||
requirements: ["a2enmod","a2dismod"]
|
||||
notes:
|
||||
- This does not work on RedHat-based distributions. It does work on Debian- and SuSE-based distributions.
|
||||
|
@ -70,13 +70,13 @@ EXAMPLES = '''
|
|||
community.general.apache2_module:
|
||||
state: absent
|
||||
name: autoindex
|
||||
force: True
|
||||
force: true
|
||||
|
||||
- name: Disable mpm_worker and ignore warnings about missing mpm module
|
||||
community.general.apache2_module:
|
||||
state: absent
|
||||
name: mpm_worker
|
||||
ignore_configcheck: True
|
||||
ignore_configcheck: true
|
||||
|
||||
- name: Enable dump_io module, which is identified as dumpio_module inside apache2
|
||||
community.general.apache2_module:
|
||||
|
|
|
@ -34,7 +34,7 @@ description:
|
|||
options:
|
||||
path:
|
||||
type: path
|
||||
required: True
|
||||
required: true
|
||||
aliases: ['dest']
|
||||
description:
|
||||
- The root path of the project.
|
||||
|
@ -234,7 +234,7 @@ EXAMPLES = '''
|
|||
path: /path/to/root
|
||||
release: '{{ deploy_helper.new_release }}'
|
||||
state: finalize
|
||||
clean: False
|
||||
clean: false
|
||||
- community.general.deploy_helper:
|
||||
path: /path/to/root
|
||||
state: clean
|
||||
|
|
|
@ -114,7 +114,7 @@ EXAMPLES = '''
|
|||
community.general.jenkins_job:
|
||||
name: test
|
||||
password: admin
|
||||
enabled: False
|
||||
enabled: false
|
||||
url: http://localhost:8080
|
||||
user: admin
|
||||
|
||||
|
@ -122,7 +122,7 @@ EXAMPLES = '''
|
|||
community.general.jenkins_job:
|
||||
name: test
|
||||
token: asdfasfasfasdfasdfadfasfasdfasdfc
|
||||
enabled: False
|
||||
enabled: false
|
||||
url: http://localhost:8080
|
||||
user: admin
|
||||
'''
|
||||
|
|
|
@ -119,7 +119,7 @@ EXAMPLES = '''
|
|||
user: admin
|
||||
token: 126df5c60d66c66e3b75b11104a16a8a
|
||||
url: https://jenkins.example.com
|
||||
validate_certs: False
|
||||
validate_certs: false
|
||||
register: my_jenkins_job_info
|
||||
'''
|
||||
|
||||
|
|
|
@ -30,12 +30,12 @@ options:
|
|||
type: str
|
||||
description:
|
||||
- Sets the project name.
|
||||
required: True
|
||||
required: true
|
||||
url:
|
||||
type: str
|
||||
description:
|
||||
- Sets the rundeck instance URL.
|
||||
required: True
|
||||
required: true
|
||||
api_version:
|
||||
type: int
|
||||
description:
|
||||
|
@ -46,7 +46,7 @@ options:
|
|||
type: str
|
||||
description:
|
||||
- Sets the token to authenticate against Rundeck API.
|
||||
required: True
|
||||
required: true
|
||||
project:
|
||||
type: str
|
||||
description:
|
||||
|
|
|
@ -32,12 +32,12 @@ options:
|
|||
type: str
|
||||
description:
|
||||
- Sets the project name.
|
||||
required: True
|
||||
required: true
|
||||
url:
|
||||
type: str
|
||||
description:
|
||||
- Sets the rundeck instance URL.
|
||||
required: True
|
||||
required: true
|
||||
api_version:
|
||||
type: int
|
||||
description:
|
||||
|
@ -48,7 +48,7 @@ options:
|
|||
type: str
|
||||
description:
|
||||
- Sets the token to authenticate against Rundeck API.
|
||||
required: True
|
||||
required: true
|
||||
client_cert:
|
||||
version_added: '0.2.0'
|
||||
client_key:
|
||||
|
|
|
@ -51,7 +51,7 @@ options:
|
|||
encrypted:
|
||||
description:
|
||||
- Optionally enable encryption.
|
||||
default: False
|
||||
default: false
|
||||
type: bool
|
||||
key:
|
||||
description:
|
||||
|
|
|
@ -53,12 +53,12 @@ options:
|
|||
resolved:
|
||||
description:
|
||||
- whether the hostname's ipv4 address is already resolved or not
|
||||
default: False
|
||||
default: false
|
||||
type: bool
|
||||
resolved6:
|
||||
description:
|
||||
- whether the hostname's ipv6 address is already resolved or not
|
||||
default: False
|
||||
default: false
|
||||
type: bool
|
||||
timeout:
|
||||
type: int
|
||||
|
|
|
@ -52,7 +52,7 @@ options:
|
|||
description:
|
||||
- Should the login data be stripped when proxying the request to the backend host
|
||||
type: bool
|
||||
default: True
|
||||
default: true
|
||||
choices:
|
||||
- True
|
||||
- False
|
||||
|
@ -112,7 +112,7 @@ options:
|
|||
description:
|
||||
- Allow session persistency
|
||||
type: bool
|
||||
default: False
|
||||
default: false
|
||||
choices:
|
||||
- True
|
||||
- False
|
||||
|
@ -125,7 +125,7 @@ options:
|
|||
description:
|
||||
- Specifies if limitation of session lifetime is active
|
||||
type: bool
|
||||
default: True
|
||||
default: true
|
||||
choices:
|
||||
- True
|
||||
- False
|
||||
|
@ -147,7 +147,7 @@ options:
|
|||
description:
|
||||
- Specifies if session timeout is active
|
||||
type: bool
|
||||
default: True
|
||||
default: true
|
||||
choices:
|
||||
- True
|
||||
- False
|
||||
|
@ -178,7 +178,7 @@ options:
|
|||
description:
|
||||
- Should a redirect to the requested URL be made
|
||||
type: bool
|
||||
default: False
|
||||
default: false
|
||||
choices:
|
||||
- True
|
||||
- False
|
||||
|
|
|
@ -27,7 +27,7 @@ options:
|
|||
name:
|
||||
description:
|
||||
- The name of the object. Will be used to identify the entry
|
||||
required: True
|
||||
required: true
|
||||
type: str
|
||||
op:
|
||||
description:
|
||||
|
@ -36,7 +36,7 @@ options:
|
|||
choices:
|
||||
- 'AND'
|
||||
- 'OR'
|
||||
required: False
|
||||
required: false
|
||||
type: str
|
||||
path:
|
||||
description:
|
||||
|
@ -44,82 +44,82 @@ options:
|
|||
type: list
|
||||
elements: str
|
||||
default: []
|
||||
required: False
|
||||
required: false
|
||||
skip_custom_threats_filters:
|
||||
description:
|
||||
- A list of threats to be skipped
|
||||
type: list
|
||||
elements: str
|
||||
default: []
|
||||
required: False
|
||||
required: false
|
||||
skip_threats_filter_categories:
|
||||
description:
|
||||
- Define which categories of threats are skipped
|
||||
type: list
|
||||
elements: str
|
||||
default: []
|
||||
required: False
|
||||
required: false
|
||||
skipav:
|
||||
description:
|
||||
- Skip the Antivirus Scanning
|
||||
default: False
|
||||
default: false
|
||||
type: bool
|
||||
required: False
|
||||
required: false
|
||||
skipbadclients:
|
||||
description:
|
||||
- Block clients with bad reputation
|
||||
default: False
|
||||
default: false
|
||||
type: bool
|
||||
required: False
|
||||
required: false
|
||||
skipcookie:
|
||||
description:
|
||||
- Skip the Cookie Signing check
|
||||
default: False
|
||||
default: false
|
||||
type: bool
|
||||
required: False
|
||||
required: false
|
||||
skipform:
|
||||
description:
|
||||
- Enable form hardening
|
||||
default: False
|
||||
default: false
|
||||
type: bool
|
||||
required: False
|
||||
required: false
|
||||
skipform_missingtoken:
|
||||
description:
|
||||
- Enable form hardening with missing tokens
|
||||
default: False
|
||||
default: false
|
||||
type: bool
|
||||
required: False
|
||||
required: false
|
||||
skiphtmlrewrite:
|
||||
description:
|
||||
- Protection against SQL
|
||||
default: False
|
||||
default: false
|
||||
type: bool
|
||||
required: False
|
||||
required: false
|
||||
skiptft:
|
||||
description:
|
||||
- Enable true file type control
|
||||
default: False
|
||||
default: false
|
||||
type: bool
|
||||
required: False
|
||||
required: false
|
||||
skipurl:
|
||||
description:
|
||||
- Enable static URL hardening
|
||||
default: False
|
||||
default: false
|
||||
type: bool
|
||||
required: False
|
||||
required: false
|
||||
source:
|
||||
description:
|
||||
- Define which categories of threats are skipped
|
||||
type: list
|
||||
elements: str
|
||||
default: []
|
||||
required: False
|
||||
required: false
|
||||
status:
|
||||
description:
|
||||
- Status of the exception rule set
|
||||
default: True
|
||||
default: true
|
||||
type: bool
|
||||
required: False
|
||||
required: false
|
||||
|
||||
extends_documentation_fragment:
|
||||
- community.general.utm
|
||||
|
|
|
@ -33,7 +33,7 @@ options:
|
|||
description:
|
||||
- Whether to add the content type header or not
|
||||
type: bool
|
||||
default: False
|
||||
default: false
|
||||
address:
|
||||
type: str
|
||||
description:
|
||||
|
@ -59,7 +59,7 @@ options:
|
|||
description:
|
||||
- Whether to enable the compression
|
||||
type: bool
|
||||
default: False
|
||||
default: false
|
||||
domain:
|
||||
type: list
|
||||
elements: str
|
||||
|
@ -75,17 +75,17 @@ options:
|
|||
description:
|
||||
- Whether to enable html rewrite or not
|
||||
type: bool
|
||||
default: False
|
||||
default: false
|
||||
htmlrewrite_cookies:
|
||||
description:
|
||||
- Whether to enable html rewrite cookie or not
|
||||
type: bool
|
||||
default: False
|
||||
default: false
|
||||
implicitredirect:
|
||||
description:
|
||||
- Whether to enable implicit redirection or not
|
||||
type: bool
|
||||
default: False
|
||||
default: false
|
||||
lbmethod:
|
||||
type: str
|
||||
description:
|
||||
|
@ -111,7 +111,7 @@ options:
|
|||
description:
|
||||
- Whether to preserve host header
|
||||
type: bool
|
||||
default: False
|
||||
default: false
|
||||
profile:
|
||||
type: str
|
||||
description:
|
||||
|
@ -121,7 +121,7 @@ options:
|
|||
description:
|
||||
- Whether to activate the frontend entry or not
|
||||
type: bool
|
||||
default: True
|
||||
default: true
|
||||
type:
|
||||
type: str
|
||||
description:
|
||||
|
@ -134,7 +134,7 @@ options:
|
|||
description:
|
||||
- Whether to pass the host header or not
|
||||
type: bool
|
||||
default: False
|
||||
default: false
|
||||
|
||||
extends_documentation_fragment:
|
||||
- community.general.utm
|
||||
|
|
|
@ -72,7 +72,7 @@ options:
|
|||
description:
|
||||
- Activate hot standby mode
|
||||
type: bool
|
||||
default: False
|
||||
default: false
|
||||
path:
|
||||
type: str
|
||||
description:
|
||||
|
@ -82,7 +82,7 @@ options:
|
|||
description:
|
||||
- Whether the location is active or not
|
||||
type: bool
|
||||
default: True
|
||||
default: true
|
||||
stickysession_id:
|
||||
type: str
|
||||
description:
|
||||
|
@ -92,12 +92,12 @@ options:
|
|||
description:
|
||||
- Enable the stickysession
|
||||
type: bool
|
||||
default: False
|
||||
default: false
|
||||
websocket_passthrough:
|
||||
description:
|
||||
- Enable the websocket passthrough
|
||||
type: bool
|
||||
default: False
|
||||
default: false
|
||||
|
||||
extends_documentation_fragment:
|
||||
- community.general.utm
|
||||
|
|
|
@ -27,17 +27,17 @@ options:
|
|||
type: str
|
||||
description:
|
||||
- Name of the project containing the issue. Must exist previously.
|
||||
required: True
|
||||
required: true
|
||||
subject:
|
||||
type: str
|
||||
description:
|
||||
- The issue subject.
|
||||
required: True
|
||||
required: true
|
||||
issue_type:
|
||||
type: str
|
||||
description:
|
||||
- The issue type. Must exist previously.
|
||||
required: True
|
||||
required: true
|
||||
priority:
|
||||
type: str
|
||||
description:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue