mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-27 07:01:22 -07:00
mso_schema: Improvements to docs (#51272)
This commit is contained in:
parent
988918410c
commit
7a642c783a
1 changed files with 7 additions and 1 deletions
|
@ -46,6 +46,12 @@ options:
|
||||||
type: str
|
type: str
|
||||||
choices: [ absent, present, query ]
|
choices: [ absent, present, query ]
|
||||||
default: present
|
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
|
extends_documentation_fragment: mso
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
@ -126,7 +132,7 @@ def main():
|
||||||
supports_check_mode=True,
|
supports_check_mode=True,
|
||||||
required_if=[
|
required_if=[
|
||||||
['state', 'absent', ['schema']],
|
['state', 'absent', ['schema']],
|
||||||
['state', 'present', ['schema']],
|
['state', 'present', ['schema', 'templates']],
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue