Saltstack Official Salt Formula
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

22 lines
683B

  1. # This file managed by Salt, do not edit by hand!!
  2. # Providers for openstack-based Rackspace cloud servers.
  3. {% set cloud = salt['pillar.get']('salt:cloud', {}) -%}
  4. {% for region in cloud.get('rsos_regions', []) %}
  5. rsos_{{ region|lower }}:
  6. minion:
  7. master: {{ cloud.get('master', 'salt') }}
  8. grains:
  9. region: {{ region|lower }}
  10. identity_url: 'https://identity.api.rackspacecloud.com/v2.0/tokens'
  11. compute_name: cloudServersOpenStack
  12. protocol: ipv4
  13. compute_region: {{ region }}
  14. provider: openstack
  15. user: {{ cloud.get('rsos_user', 'DEFAULT') }}
  16. tenant: {{ cloud.get('rsos_tenant', 'DEFAULT') }}
  17. apikey: {{ cloud.get('rsos_apikey', 'DEFAULT') }}
  18. {% endfor %}