Saltstack Official Salt Formula
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910111213141516
  1. # This file managed by Salt, do not edit by hand!!
  2. {%- set cloud = salt['pillar.get']('salt:cloud', {}) -%}
  3. {%- if 'gce_project' in cloud %}
  4. base_debian_gce:
  5. image: debian-7-wheezy
  6. size: g1-small
  7. location: us-central1-a
  8. network: default
  9. tags: '["https-server", "http-server"]'
  10. metadata: '{"salt-minion": "true"}'
  11. use_persistent_disk: True
  12. delete_boot_pd: True
  13. deploy: True
  14. make_master: False
  15. provider: gce
  16. {%- endif %}