summaryrefslogtreecommitdiffstats
path: root/ansible/roles/certificates/templates/v3.ext.j2
blob: 7be946fdb820bcaf7ee6ae6eb312fe3b5992cac1 (plain)
1
2
3
4
5
6
7
8
9
authorityKeyIdentifier=keyid,issuer
basicConstraints=CA:FALSE
keyUsage = digitalSignature, nonRepudiation, keyEncipherment, dataEncipherment
subjectAltName = @alt_names

[alt_names]
{% for name in all_simulated_hosts -%}
    DNS.{{ loop.index }} = {{ name }}
{% endfor %}