Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

deploy.yaml 483B

12345678910111213141516171819
  1. ---
  2. - hosts: localhost
  3. vars:
  4. vms: "{
  5. {% for hostname in groups.vms %}
  6. {{hostname|to_json}}: {{
  7. {
  8. 'provider': hostvars[hostname].provider,
  9. 'server_type': hostvars[hostname].server_type,
  10. } | to_json }},
  11. {% endfor %} }"
  12. tasks:
  13. - name: terraform inventory vars
  14. copy:
  15. content:
  16. vms: "{{vms}}"
  17. groups: {}
  18. dest: "{{playbook_dir}}/inventory.auto.tfvars.json"