mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-09 18:04:02 -07:00
Add quotes for non-floats decimals (#3609)
This commit is contained in:
parent
d9231d065e
commit
75f9cb30e1
5 changed files with 7 additions and 7 deletions
|
@ -81,20 +81,20 @@ requirements: [ ]
|
|||
EXAMPLES = '''
|
||||
- bigpanda:
|
||||
component: myapp
|
||||
version: 1.3
|
||||
version: '1.3'
|
||||
token: '{{ bigpanda_token }}'
|
||||
state: started
|
||||
...
|
||||
- bigpanda:
|
||||
component: myapp
|
||||
version: 1.3
|
||||
version: '1.3'
|
||||
token: '{{ bigpanda_token }}'
|
||||
state: finished
|
||||
|
||||
# If outside servers aren't reachable from your machine, use delegate_to and override hosts:
|
||||
- bigpanda:
|
||||
component: myapp
|
||||
version: 1.3
|
||||
version: '1.3'
|
||||
token: '{{ bigpanda_token }}'
|
||||
hosts: '{{ ansible_hostname }}'
|
||||
state: started
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue