Unquote urls in YAML - cloud (#5797)

pull/18777/head
Fabio Alessandro Locati 8 years ago committed by Matt Clay
parent eb54b80a92
commit ca047c3881

@ -156,7 +156,7 @@ EXAMPLES = '''
state: present
region: us-east-1
disable_rollback: true
template_url: 'https://s3.amazonaws.com/my-bucket/cloudformation.template'
template_url: https://s3.amazonaws.com/my-bucket/cloudformation.template
args:
template_parameters:
KeyName: jmartin
@ -173,7 +173,7 @@ EXAMPLES = '''
state: present
region: us-east-1
disable_rollback: true
template_url: 'https://s3.amazonaws.com/my-bucket/cloudformation.template'
template_url: https://s3.amazonaws.com/my-bucket/cloudformation.template
role_arn: 'arn:aws:iam::123456789012:role/cloudformation-iam-role'
args:
template_parameters:

@ -44,7 +44,7 @@ options:
description:
- The keystone url for authentication
required: false
default: 'http://127.0.0.1:35357/v2.0/'
default: http://127.0.0.1:35357/v2.0/
region_name:
description:
- Name of the region
@ -126,7 +126,7 @@ EXAMPLES = '''
container_format: bare
disk_format: qcow2
state: present
copy_from: 'http://launchpad.net/cirros/trunk/0.3.0/+download/cirros-0.3.0-x86_64-disk.img'
copy_from: http://launchpad.net/cirros/trunk/0.3.0/+download/cirros-0.3.0-x86_64-disk.img
'''
import time

@ -51,7 +51,7 @@ options:
description:
- The keystone url for authentication
required: false
default: 'http://127.0.0.1:35357/v2.0/'
default: http://127.0.0.1:35357/v2.0/
user:
description:
- The name of the user that has to added/removed from OpenStack

@ -57,7 +57,7 @@ options:
description:
- The keystone url for authentication
required: false
default: 'http://127.0.0.1:35357/v2.0/'
default: http://127.0.0.1:35357/v2.0/
region_name:
description:
- Name of the region

@ -55,7 +55,7 @@ options:
description:
- The keystone url for authentication
required: false
default: 'http://127.0.0.1:35357/v2.0/'
default: http://127.0.0.1:35357/v2.0/
region_name:
description:
- Name of the region

@ -58,7 +58,7 @@ options:
description:
- The keystone url for authentication
required: false
default: 'http://127.0.0.1:35357/v2.0/'
default: http://127.0.0.1:35357/v2.0/
region_name:
description:
- Name of the region

@ -56,7 +56,7 @@ options:
description:
- the keystone url for authentication
required: false
default: 'http://127.0.0.1:35357/v2.0/'
default: http://127.0.0.1:35357/v2.0/
region_name:
description:
- name of the region

@ -58,7 +58,7 @@ options:
description:
- The keystone url for authentication
required: false
default: 'http://127.0.0.1:35357/v2.0/'
default: http://127.0.0.1:35357/v2.0/
region_name:
description:
- Name of the region

@ -54,7 +54,7 @@ options:
description:
- The keystone url for authentication
required: false
default: 'http://127.0.0.1:35357/v2.0/'
default: http://127.0.0.1:35357/v2.0/
region_name:
description:
- Name of the region

@ -53,7 +53,7 @@ options:
description:
- The keystone URL for authentication
required: false
default: 'http://127.0.0.1:35357/v2.0/'
default: http://127.0.0.1:35357/v2.0/
region_name:
description:
- Name of the region

@ -45,7 +45,7 @@ EXAMPLES = '''
- name: Gather facts about a previously created image named image1
os_image_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

@ -49,7 +49,7 @@ EXAMPLES = '''
- name: Gather facts about previously created networks
os_networks_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 network by name
os_networks_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_networks_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

@ -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

@ -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

@ -53,7 +53,7 @@ options:
description:
- The keystone URL for authentication
required: false
default: 'http://127.0.0.1:35357/v2.0/'
default: http://127.0.0.1:35357/v2.0/
region_name:
description:
- Name of the region

Loading…
Cancel
Save