mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02: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
|
@ -69,7 +69,7 @@ EXAMPLES = '''
|
|||
token: AAAAAA
|
||||
environment: staging
|
||||
user: ansible
|
||||
revision: 4.2
|
||||
revision: '4.2'
|
||||
'''
|
||||
|
||||
import urllib
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -80,7 +80,7 @@ EXAMPLES = '''
|
|||
token: AAAAAA
|
||||
app_name: myapp
|
||||
user: ansible deployment
|
||||
revision: 1.0
|
||||
revision: '1.0'
|
||||
'''
|
||||
|
||||
import urllib
|
||||
|
|
|
@ -72,7 +72,7 @@ EXAMPLES = '''
|
|||
token: AAAAAA
|
||||
environment: staging
|
||||
user: ansible
|
||||
revision: 4.2
|
||||
revision: '4.2'
|
||||
rollbar_user: admin
|
||||
comment: Test Deploy
|
||||
'''
|
||||
|
|
|
@ -102,7 +102,7 @@ EXAMPLES = '''
|
|||
# Install notepadplusplus version 6.6
|
||||
win_chocolatey:
|
||||
name: notepadplusplus.install
|
||||
version: 6.6
|
||||
version: '6.6'
|
||||
|
||||
# Uninstall git
|
||||
win_chocolatey:
|
||||
|
|
Loading…
Reference in a new issue