mirror of
https://github.com/saltstack-formulas/salt-formula.git
synced 2024-11-28 18:07:28 +01:00
445108f87a
Most include do not expect salt to be something else than the usual salt variable giving access to all the salt modules. Instead we use cfg_salt. And for consistency we rename the master/minion variables to cfg_master/cfg_minion too.
12 lines
390 B
Plaintext
12 lines
390 B
Plaintext
# This file managed by Salt, do not edit by hand!!
|
|
{% set cloud = salt['pillar.get']('salt:cloud', {}) -%}
|
|
gce:
|
|
project: "{{ cloud['gce_project'] }}"
|
|
service_account_email_address: "{{ cloud['gce_service_account_email_address'] }}"
|
|
service_account_private_key: "/etc/salt/cloud.providers.d/key.pem"
|
|
minion:
|
|
master: {{ cloud['master'] }}
|
|
grains:
|
|
test: True
|
|
provider: gce
|