Allow documentation of module options type (#42285)

* Allow documentation of module options

Pass through the `type` of a modules option so it's displayed on the
html module docs

* docs
pull/42361/head
John R Barker 6 years ago committed by Brian Coca
parent 31dd41e4c5
commit d962611528

@ -239,7 +239,9 @@ The following fields can be used and are all required unless specified otherwise
:choices:
List of option values. Should be absent if empty.
:type:
If an argument is ``type='bool'``, this field should be set to ``type: bool`` and no ``choices`` should be specified.
* Specifies the data type that option accepts, must match the ``argspec``.
* If an argument is ``type='bool'``, this field should be set to ``type: bool`` and no ``choices`` should be specified.
:aliases:
List of option name aliases; generally not needed.
:version_added:

@ -50,7 +50,7 @@ option_schema = Schema(
'default': Any(None, float, int, bool, list, dict, *string_types),
'suboptions': Any(None, *list_dict_suboption_schema),
# Note: Types are strings, not literal bools, such as True or False
'type': Any(None, "bool")
'type': Any(None, 'str', 'list', 'dict', 'bool', 'int', 'float', 'path', 'raw', 'jsonarg', 'json', 'bytes', 'bits')
},
extra=PREVENT_EXTRA
)

Loading…
Cancel
Save