summaryrefslogtreecommitdiffstats
path: root/lib/ansible/galaxy/data/default/collection/galaxy.yml.j2
blob: 7821491b2573bac3c3aea2b571d32bd7d53500d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
### REQUIRED
{% for option in required_config %}
{{ option.description | comment_ify }}
{{ {option.key: option.value} | to_nice_yaml }}
{% endfor %}

### OPTIONAL but strongly recommended
{% for option in optional_config %}
{{ option.description | comment_ify }}
{% if option.key == 'manifest' %}
{{ {option.key: option.value} | to_nice_yaml | comment_ify }}

{% else %}
{{ {option.key: option.value} | to_nice_yaml }}
{% endif %}
{% endfor %}