Added seed code for caas-security.
[ta/caas-security.git] / ansible / roles / cert / templates / node.conf.j2
1 {#
2 Copyright 2019 Nokia
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8     http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15 #}
16 [req]
17 req_extensions = v3_req
18 distinguished_name = req_distinguished_name
19 [req_distinguished_name]
20 [ v3_req ]
21 basicConstraints = critical, CA:FALSE
22 keyUsage = critical, nonRepudiation, digitalSignature, keyEncipherment
23 extendedKeyUsage = clientAuth, serverAuth
24 subjectKeyIdentifier=hash
25 authorityKeyIdentifier=keyid
26 {% if _alt_names.dns | default([]) or _alt_names.ip | default([]) %}
27 subjectAltName = @alt_names
28 [alt_names]
29 {% for element in _alt_names.dns | default([]) %}
30 DNS.{{loop.index}} = {{ element }}
31 {% endfor %}
32 {% for element in _alt_names.ip | default([]) %}
33 IP.{{loop.index}} = {{ element }}
34 {% endfor %}
35 {% endif %}