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
|
token: AAAAAA
|
||||||
environment: staging
|
environment: staging
|
||||||
user: ansible
|
user: ansible
|
||||||
revision: 4.2
|
revision: '4.2'
|
||||||
'''
|
'''
|
||||||
|
|
||||||
import urllib
|
import urllib
|
||||||
|
|
|
@ -81,20 +81,20 @@ requirements: [ ]
|
||||||
EXAMPLES = '''
|
EXAMPLES = '''
|
||||||
- bigpanda:
|
- bigpanda:
|
||||||
component: myapp
|
component: myapp
|
||||||
version: 1.3
|
version: '1.3'
|
||||||
token: '{{ bigpanda_token }}'
|
token: '{{ bigpanda_token }}'
|
||||||
state: started
|
state: started
|
||||||
...
|
...
|
||||||
- bigpanda:
|
- bigpanda:
|
||||||
component: myapp
|
component: myapp
|
||||||
version: 1.3
|
version: '1.3'
|
||||||
token: '{{ bigpanda_token }}'
|
token: '{{ bigpanda_token }}'
|
||||||
state: finished
|
state: finished
|
||||||
|
|
||||||
# If outside servers aren't reachable from your machine, use delegate_to and override hosts:
|
# If outside servers aren't reachable from your machine, use delegate_to and override hosts:
|
||||||
- bigpanda:
|
- bigpanda:
|
||||||
component: myapp
|
component: myapp
|
||||||
version: 1.3
|
version: '1.3'
|
||||||
token: '{{ bigpanda_token }}'
|
token: '{{ bigpanda_token }}'
|
||||||
hosts: '{{ ansible_hostname }}'
|
hosts: '{{ ansible_hostname }}'
|
||||||
state: started
|
state: started
|
||||||
|
|
|
@ -80,7 +80,7 @@ EXAMPLES = '''
|
||||||
token: AAAAAA
|
token: AAAAAA
|
||||||
app_name: myapp
|
app_name: myapp
|
||||||
user: ansible deployment
|
user: ansible deployment
|
||||||
revision: 1.0
|
revision: '1.0'
|
||||||
'''
|
'''
|
||||||
|
|
||||||
import urllib
|
import urllib
|
||||||
|
|
|
@ -72,7 +72,7 @@ EXAMPLES = '''
|
||||||
token: AAAAAA
|
token: AAAAAA
|
||||||
environment: staging
|
environment: staging
|
||||||
user: ansible
|
user: ansible
|
||||||
revision: 4.2
|
revision: '4.2'
|
||||||
rollbar_user: admin
|
rollbar_user: admin
|
||||||
comment: Test Deploy
|
comment: Test Deploy
|
||||||
'''
|
'''
|
||||||
|
|
|
@ -102,7 +102,7 @@ EXAMPLES = '''
|
||||||
# Install notepadplusplus version 6.6
|
# Install notepadplusplus version 6.6
|
||||||
win_chocolatey:
|
win_chocolatey:
|
||||||
name: notepadplusplus.install
|
name: notepadplusplus.install
|
||||||
version: 6.6
|
version: '6.6'
|
||||||
|
|
||||||
# Uninstall git
|
# Uninstall git
|
||||||
win_chocolatey:
|
win_chocolatey:
|
||||||
|
|
Loading…
Reference in a new issue