multi_ec2.yaml.j2 924 B

1234567891011121314151617181920212223242526
  1. # multi ec2 inventory configs
  2. cache_max_age: {{ oo_inventory_cache_max_age }}
  3. cache_location: {{ oo_inventory_cache_location | default('~/.ansible/tmp/multi_ec2_inventory.cache') }}
  4. accounts:
  5. {% for account in oo_inventory_accounts %}
  6. - name: {{ account.name }}
  7. provider: {{ account.provider }}
  8. provider_config:
  9. {% for section, items in account.provider_config.items() %}
  10. {{ section }}:
  11. {% for property, value in items.items() %}
  12. {{ property }}: {{ value }}
  13. {% endfor %}
  14. {% endfor %}
  15. env_vars:
  16. AWS_ACCESS_KEY_ID: {{ account.env_vars.AWS_ACCESS_KEY_ID }}
  17. AWS_SECRET_ACCESS_KEY: {{ account.env_vars.AWS_SECRET_ACCESS_KEY }}
  18. {% if account.all_group is defined and account.hostvars is defined%}
  19. all_group: {{ account.all_group }}
  20. hostvars:
  21. {% for property, value in account.hostvars.items() %}
  22. {{ property }}: {{ value }}
  23. {% endfor %}
  24. {% endif %}
  25. {% endfor %}