2014-07-20 16:59:38 +02:00
|
|
|
# This file managed by Salt, do not edit by hand!!
|
2015-04-17 16:48:47 +02:00
|
|
|
{%- set cloud = salt['pillar.get']('salt:cloud', {}) -%}
|
|
|
|
{%- if 'gce_project' in cloud %}
|
2014-07-20 16:59:38 +02:00
|
|
|
base_debian_gce:
|
|
|
|
image: debian-7-wheezy
|
|
|
|
size: g1-small
|
|
|
|
location: us-central1-a
|
|
|
|
network: default
|
|
|
|
tags: '["https-server", "http-server"]'
|
|
|
|
metadata: '{"salt-minion": "true"}'
|
|
|
|
use_persistent_disk: True
|
|
|
|
delete_boot_pd: True
|
|
|
|
deploy: True
|
|
|
|
make_master: False
|
2015-04-17 16:48:47 +02:00
|
|
|
provider: gce
|
|
|
|
{%- endif %}
|