summaryrefslogtreecommitdiffstats
path: root/ansible/roles/certificates/templates
diff options
context:
space:
mode:
authorMilan Verespej <m.verespej@partner.samsung.com>2019-03-06 12:32:24 +0100
committerMilan Verespej <m.verespej@partner.samsung.com>2019-03-14 10:10:24 +0100
commit467c57ffcd6946c566046ab8042e14a2185e97fe (patch)
tree40d8a72f2ce3aeefe4811c248fc34dfe592383ce /ansible/roles/certificates/templates
parente9fca5ef39ebdc51d4d0f1af175960fb51cd903e (diff)
Change cert signing from command to module
With newer Ansible we are now able to sign nexus certificate with own CA using openssl_certificate module. Issue-ID: OOM-1700 Change-Id: Idc54955160caef4a57bd50fc86678923511b5bce Signed-off-by: Milan Verespej <m.verespej@partner.samsung.com>
Diffstat (limited to 'ansible/roles/certificates/templates')
-rw-r--r--ansible/roles/certificates/templates/v3.ext.j29
1 files changed, 0 insertions, 9 deletions
diff --git a/ansible/roles/certificates/templates/v3.ext.j2 b/ansible/roles/certificates/templates/v3.ext.j2
deleted file mode 100644
index 7be946fd..00000000
--- a/ansible/roles/certificates/templates/v3.ext.j2
+++ /dev/null
@@ -1,9 +0,0 @@
-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 %}