445108f87a
Most include do not expect salt to be something else than the usual salt variable giving access to all the salt modules. Instead we use cfg_salt. And for consistency we rename the master/minion variables to cfg_master/cfg_minion too.
22 lines
626 B
Plaintext
22 lines
626 B
Plaintext
# This file managed by Salt, do not edit by hand!!
|
|
# Providers for openstack-based Rackspace cloud servers.
|
|
|
|
{% set cloud = salt['pillar.get']('salt:cloud', {}) -%}
|
|
{% for region in cloud.get('rsos_regions', []) %}
|
|
|
|
rsos_{{ region|lower }}:
|
|
minion:
|
|
master: {{ cloud['master'] }}
|
|
grains:
|
|
region: {{ region|lower }}
|
|
|
|
identity_url: 'https://identity.api.rackspacecloud.com/v2.0/tokens'
|
|
compute_name: cloudServersOpenStack
|
|
protocol: ipv4
|
|
compute_region: {{ region }}
|
|
provider: openstack
|
|
user: {{ cloud['rsos_user'] }}
|
|
tenant: {{ cloud['rsos_tenant'] }}
|
|
apikey: {{ cloud['rsos_apikey'] }}
|
|
{% endfor %}
|