Add server specific cloud configuration

A user may not just want to deploy all servers under the same
os_client_config cloud, this change adds a default at the role
level defaulting to envvars, and the creation loop checks first
per-server occ cloud, then default to role default if not defined.
This commit is contained in:
Ricardo Carrillo Cruz 2015-08-19 21:06:06 +02:00
parent 105ff969bc
commit f357563ea2
2 changed files with 3 additions and 1 deletions

View File

@ -0,0 +1,2 @@
---
os_client_config_cloud: envvars

View File

@ -2,7 +2,7 @@
- name: Create OpenStack instances
os_server:
state: present
cloud: "{{os_client_config_cloud}}"
cloud: "{{item.os_client_config_cloud | default(os_client_config_cloud) }}"
name: "{{ item.name }}.{{ domainname }}"
image: "{{ item.image }}"
key_name: "{{ key_name }}"