mso_schema: Improvements to docs (#51272)

pull/51275/head
Dag Wieers 6 years ago committed by GitHub
parent 988918410c
commit 7a642c783a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -46,6 +46,12 @@ options:
type: str
choices: [ absent, present, query ]
default: present
notes:
- This module cannot create empty schemas (i.e. schemas without templates).
Use the M(mso_schema_template) to automatically create schemas with templates.
seealso:
- module: mso_schema_site
- module: mso_schema_template
extends_documentation_fragment: mso
'''
@ -126,7 +132,7 @@ def main():
supports_check_mode=True,
required_if=[
['state', 'absent', ['schema']],
['state', 'present', ['schema']],
['state', 'present', ['schema', 'templates']],
],
)

Loading…
Cancel
Save