mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-09 01:44:03 -07:00
Unquote urls in YAML - cloud (#5797)
This commit is contained in:
parent
eb54b80a92
commit
ca047c3881
15 changed files with 25 additions and 25 deletions
|
@ -209,7 +209,7 @@ EXAMPLES = '''
|
|||
os_server:
|
||||
state: present
|
||||
auth:
|
||||
auth_url: 'https://region-b.geo-1.identity.hpcloudsvc.com:35357/v2.0/'
|
||||
auth_url: https://region-b.geo-1.identity.hpcloudsvc.com:35357/v2.0/
|
||||
username: admin
|
||||
password: admin
|
||||
project_name: admin
|
||||
|
@ -234,7 +234,7 @@ EXAMPLES = '''
|
|||
os_server:
|
||||
state: present
|
||||
auth:
|
||||
auth_url: 'https://region-b.geo-1.identity.hpcloudsvc.com:35357/v2.0/'
|
||||
auth_url: https://region-b.geo-1.identity.hpcloudsvc.com:35357/v2.0/
|
||||
username: username
|
||||
password: Equality7-2521
|
||||
project_name: username-project1
|
||||
|
@ -301,7 +301,7 @@ EXAMPLES = '''
|
|||
- name: launch an instance with a string
|
||||
os_server:
|
||||
auth:
|
||||
auth_url: 'https://region-b.geo-1.identity.hpcloudsvc.com:35357/v2.0/'
|
||||
auth_url: https://region-b.geo-1.identity.hpcloudsvc.com:35357/v2.0/
|
||||
username: admin
|
||||
password: admin
|
||||
project_name: admin
|
||||
|
@ -316,7 +316,7 @@ EXAMPLES = '''
|
|||
os_server:
|
||||
state: present
|
||||
auth:
|
||||
auth_url: 'https://region-b.geo-1.identity.hpcloudsvc.com:35357/v2.0/'
|
||||
auth_url: https://region-b.geo-1.identity.hpcloudsvc.com:35357/v2.0/
|
||||
username: admin
|
||||
password: admin
|
||||
project_name: admin
|
||||
|
@ -334,7 +334,7 @@ EXAMPLES = '''
|
|||
os_server:
|
||||
state: present
|
||||
auth:
|
||||
auth_url: 'https://region-b.geo-1.identity.hpcloudsvc.com:35357/v2.0/'
|
||||
auth_url: https://region-b.geo-1.identity.hpcloudsvc.com:35357/v2.0/
|
||||
username: admin
|
||||
password: admin
|
||||
project_name: admin
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue