Adding quotes around parameters in cloud_config (#1664)

This is to help support escapes and special characters
This commit is contained in:
Brad Beam
2017-09-16 02:43:47 -05:00
committed by Matthew Mosesohn
parent 9302ce0036
commit aaa27d0a34
2 changed files with 12 additions and 12 deletions

View File

@@ -1,11 +1,11 @@
[Global]
auth-url={{ openstack_auth_url }}
username={{ openstack_username }}
password={{ openstack_password }}
region={{ openstack_region }}
tenant-id={{ openstack_tenant_id }}
auth-url="{{ openstack_auth_url }}"
username="{{ openstack_username }}"
password="{{ openstack_password }}"
region="{{ openstack_region }}"
tenant-id="{{ openstack_tenant_id }}"
{% if openstack_domain_name is defined and openstack_domain_name != "" %}
domain-name={{ openstack_domain_name }}
domain-name="{{ openstack_domain_name }}"
{% endif %}
{% if openstack_blockstorage_version is defined %}