mso_schema: Improvements to docs (#51272)

This commit is contained in:
Dag Wieers 2019-01-24 14:39:06 +01:00 committed by GitHub
commit 7a642c783a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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']],
],
)