87074cf3d9
As discussed in PR#305, these are defaults that even if they are configurable as probably not suited to a majority of users and causes delete/add output on highstate of user of the formula choses to use the same file name.
17 lines
441 B
Plaintext
17 lines
441 B
Plaintext
# This file managed by Salt, do not edit by hand!!
|
|
{%- set cloud = salt['pillar.get']('salt:cloud', {}) -%}
|
|
{%- if 'gce_project' in cloud %}
|
|
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
|
|
provider: gce
|
|
{%- endif %}
|