mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 06:12:51 +00:00
Fix boolean choices in module docs fragments
A few of the docs fragments have the available choices for some params defined as "BOOLEANS". Because choices accepts a list, it treats "BOOLEANS" as an iterable and then generates a list composed of each letter. Instead, define the available choices as a list of `['yes', 'no']`, as is common in most other modules.
This commit is contained in:
@@ -68,8 +68,8 @@ options:
|
||||
I(transport) argument is configured as rest. If the transport
|
||||
argument is not rest, this value is ignored
|
||||
required: false
|
||||
default: true
|
||||
choices: BOOLEANS
|
||||
default: yes
|
||||
choices: ['yes', 'no']
|
||||
provider:
|
||||
description:
|
||||
- Convience method that allows all M(openswitch) arguments to be passed as
|
||||
|
||||
Reference in New Issue
Block a user