a01249a7fc
Needed because salt-cloud will attempt to load them even if they are filled with invalid default values, creating error spam.
14 lines
471 B
Plaintext
14 lines
471 B
Plaintext
# This file managed by Salt, do not edit by hand!!
|
|
{%- set cloud = salt['pillar.get']('salt:cloud', {}) -%}
|
|
{%- if 'gce_project' in cloud %}
|
|
gce:
|
|
project: "{{ cloud.get('gce_project', 'DEFAULT') }}"
|
|
service_account_email_address: "{{ cloud.get('gce_service_account_email_address', 'DEFAULT') }}"
|
|
service_account_private_key: "/etc/salt/pki/cloud/gce.pem"
|
|
minion:
|
|
master: {{ cloud.get('master', 'salt') }}
|
|
grains:
|
|
test: True
|
|
provider: gce
|
|
{%- endif %}
|