You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/lib/ansible/galaxy/data/default/collection/galaxy.yml.j2

18 lines
476 B
Django/Jinja

#SPDX-License-Identifier: MIT-0
### 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 %}