Docs standardization
This commit is contained in:
parent
79015895ba
commit
2438ef474a
1 changed files with 10 additions and 10 deletions
|
@ -36,16 +36,16 @@ options:
|
|||
required: true
|
||||
default: null
|
||||
version_added: "1.2"
|
||||
examples:
|
||||
- description: "Example setting host facts using key=value pairs"
|
||||
code: |
|
||||
action: set_fact one_fact="something" other_fact="{{ local_var * 2 }}"'
|
||||
- description: "Example setting host facts using complex arguments"
|
||||
code: |
|
||||
action: set_fact
|
||||
args:
|
||||
one_fact: something
|
||||
other_fact: "{{ local_var * 2 }}"
|
||||
notes:
|
||||
- You can set play variables using the C(set_var) module.
|
||||
'''
|
||||
|
||||
EXAMPLES = '''
|
||||
# Example setting host facts using key=value pairs
|
||||
set_fact: one_fact="something" other_fact="{{ local_var * 2 }}"
|
||||
|
||||
# Example setting host facts using complex arguments
|
||||
set_fact:
|
||||
one_fact: something
|
||||
other_fact: "{{ local_var * 2 }}"
|
||||
'''
|
||||
|
|
Loading…
Reference in a new issue