From 467c57ffcd6946c566046ab8042e14a2185e97fe Mon Sep 17 00:00:00 2001 From: Milan Verespej Date: Wed, 6 Mar 2019 12:32:24 +0100 Subject: 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 --- ansible/roles/certificates/templates/v3.ext.j2 | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 ansible/roles/certificates/templates/v3.ext.j2 (limited to 'ansible/roles/certificates/templates/v3.ext.j2') 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 %} -- cgit 1.2.3-korg