Replace BOOLEANS with true/false
This commit is contained in:
parent
b3bc4bc97f
commit
d531eb146d
7 changed files with 12 additions and 13 deletions
|
@ -40,7 +40,7 @@ options:
|
|||
linode_id:
|
||||
description:
|
||||
- Unique ID of a linode server
|
||||
aliases: lid
|
||||
aliases: [ 'lid' ]
|
||||
default: null
|
||||
type: integer
|
||||
plan:
|
||||
|
|
|
@ -54,10 +54,9 @@ options:
|
|||
network:
|
||||
description:
|
||||
- Unique name or ID of the external gateway network.
|
||||
- required I(interfaces) or I(enable_snat) are provided,
|
||||
- required I(interfaces) or I(enable_snat) are provided.
|
||||
type: string
|
||||
required: false
|
||||
false otherwise.
|
||||
default: None
|
||||
external_fixed_ips:
|
||||
description:
|
||||
|
|
|
@ -47,7 +47,7 @@ options:
|
|||
without first checking if already configured.
|
||||
required: false
|
||||
default: false
|
||||
choices: BOOLEANS
|
||||
choices: [ "true", "false" ]
|
||||
include_defaults:
|
||||
description:
|
||||
- The module, by default, will collect the current device
|
||||
|
@ -58,7 +58,7 @@ options:
|
|||
does not support such a flag, this argument is silently ignored.
|
||||
required: false
|
||||
default: false
|
||||
choices: BOOLEANS
|
||||
choices: [ "true", "false" ]
|
||||
backup:
|
||||
description:
|
||||
- When this argument is configured true, the module will backup
|
||||
|
@ -67,7 +67,7 @@ options:
|
|||
the root of the playbook directory.
|
||||
required: false
|
||||
default: false
|
||||
choices: BOOLEANS
|
||||
choices: [ "true", "false" ]
|
||||
config:
|
||||
description:
|
||||
- The module, by default, will connect to the remote device and
|
||||
|
|
|
@ -93,7 +93,7 @@ options:
|
|||
without first checking if already configured.
|
||||
required: false
|
||||
default: false
|
||||
choices: BOOLEANS
|
||||
choices: [ "true", "false" ]
|
||||
config:
|
||||
description:
|
||||
- The module, by default, will connect to the remote device and
|
||||
|
|
|
@ -47,7 +47,7 @@ options:
|
|||
without first checking if already configured.
|
||||
required: false
|
||||
default: false
|
||||
choices: BOOLEANS
|
||||
choices: [ "true", "false" ]
|
||||
backup:
|
||||
description:
|
||||
- When this argument is configured true, the module will backup
|
||||
|
@ -56,7 +56,7 @@ options:
|
|||
the root of the playbook directory.
|
||||
required: false
|
||||
default: false
|
||||
choices: BOOLEANS
|
||||
choices: [ "true", "false" ]
|
||||
config:
|
||||
description:
|
||||
- The module, by default, will connect to the remote device and
|
||||
|
|
|
@ -93,7 +93,7 @@ options:
|
|||
without first checking if already configured.
|
||||
required: false
|
||||
default: false
|
||||
choices: BOOLEANS
|
||||
choices: [ "true", "false" ]
|
||||
config:
|
||||
description:
|
||||
- The module, by default, will connect to the remote device and
|
||||
|
|
|
@ -46,7 +46,7 @@ options:
|
|||
without first checking if already configured.
|
||||
required: false
|
||||
default: false
|
||||
choices: BOOLEANS
|
||||
choices: [ "true", "false" ]
|
||||
include_defaults:
|
||||
description:
|
||||
- The module, by default, will collect the current device
|
||||
|
@ -56,7 +56,7 @@ options:
|
|||
device settings.
|
||||
required: false
|
||||
default: false
|
||||
choices: BOOLEANS
|
||||
choices: [ "true", "false" ]
|
||||
backup:
|
||||
description:
|
||||
- When this argument is configured true, the module will backup
|
||||
|
@ -65,7 +65,7 @@ options:
|
|||
the root of the playbook directory.
|
||||
required: false
|
||||
default: false
|
||||
choices: BOOLEANS
|
||||
choices: [ "true", "false" ]
|
||||
config:
|
||||
description:
|
||||
- The module, by default, will connect to the remote device and
|
||||
|
|
Loading…
Reference in a new issue