mirror of
https://github.com/saltstack-formulas/salt-formula.git
synced 2025-08-03 14:43:54 +02:00
12 lines
405 B
Plaintext
12 lines
405 B
Plaintext
# This file managed by Salt, do not edit by hand!!
|
|
{% set cloud = salt['pillar.get']('salt:cloud', {}) -%}
|
|
{% for name, config in cloud.get('proxmox_providers',dict()).items() %}
|
|
proxmox-{{ name }}:
|
|
minion:
|
|
master: {{ cloud.get('master', 'salt') }}
|
|
user: {{ config.get('user', '') }}
|
|
password: {{ config.get('password', '') }}
|
|
url: {{ config.get('url', '') }}
|
|
provider: proxmox
|
|
{% endfor %}
|