mirror of
https://github.com/saltstack-formulas/salt-formula.git
synced 2025-08-03 14:43:54 +02:00
20 lines
519 B
Plaintext
20 lines
519 B
Plaintext
# This file managed by Salt, do not edit by hand!!
|
|
{% set cloud = salt['pillar.get']('salt:cloud', {}) -%}
|
|
{% if 'proxmox_profile_defaults' in cloud %}
|
|
{% set defaults = cloud.get('proxmox_profile_defaults') %}
|
|
|
|
prox-test-1:
|
|
provider: proxmox-test
|
|
image: ISO:vztmpl/debian-7.0-standard_7.0-2_i386.tar.gz
|
|
technology: openvz
|
|
host: testvm01
|
|
cpus: 2
|
|
memory: 2048
|
|
swap: 2048
|
|
disk: 5
|
|
password: {{ defaults.get('default_password', 'password') }}
|
|
ip_address: 192.168.1.100
|
|
|
|
{% endif %}
|
|
|