1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Fix example, clarify "macro_name" syntax (#51129)

* Fix the macro name in example to use allowed characters.
* Clarify on the syntax for the "macro_name" parameter.
This commit is contained in:
Richlv 2019-01-24 22:30:12 +02:00 committed by Alicia Cozine
parent 8e9a5c8de7
commit 6345ea2925

View file

@ -33,7 +33,7 @@ options:
required: true
macro_name:
description:
- Name of the host macro.
- Name of the host macro without the enclosing curly braces and the leading dollar sign.
required: true
macro_value:
description:
@ -66,7 +66,7 @@ EXAMPLES = '''
login_user: username
login_password: password
host_name: ExampleHost
macro_name: Example macro
macro_name: EXAMPLE.MACRO
macro_value: Example value
state: present
'''