選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

20 行
483B

  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"