mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-02 14:40:19 -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
|
@ -49,7 +49,7 @@ EXAMPLES = '''
|
|||
- name: Gather facts about previously created subnets
|
||||
os_subnets_facts:
|
||||
auth:
|
||||
auth_url: 'https://your_api_url.com:9000/v2.0'
|
||||
auth_url: https://your_api_url.com:9000/v2.0
|
||||
username: user
|
||||
password: password
|
||||
project_name: someproject
|
||||
|
@ -61,7 +61,7 @@ EXAMPLES = '''
|
|||
- name: Gather facts about a previously created subnet by name
|
||||
os_subnets_facts:
|
||||
auth:
|
||||
auth_url: 'https://your_api_url.com:9000/v2.0'
|
||||
auth_url: https://your_api_url.com:9000/v2.0
|
||||
username: user
|
||||
password: password
|
||||
project_name: someproject
|
||||
|
@ -75,7 +75,7 @@ EXAMPLES = '''
|
|||
# Note: name and filters parameters are not mutually exclusive
|
||||
os_subnets_facts:
|
||||
auth:
|
||||
auth_url: 'https://your_api_url.com:9000/v2.0'
|
||||
auth_url: https://your_api_url.com:9000/v2.0
|
||||
username: user
|
||||
password: password
|
||||
project_name: someproject
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue