From 84435d5bc0a265d505746c03c646dea097e573ea Mon Sep 17 00:00:00 2001 From: Matthew Thode Date: Mon, 17 Dec 2018 09:46:30 -0600 Subject: [PATCH] Force force-tlsv12 only Secure by default Depends-On: https://review.openstack.org/628979 Change-Id: I068876e37bb7c51dac074f98c8d163237dfe44e1 --- defaults/main.yml | 2 +- releasenotes/notes/tls12-only-2025a08207fd562e.yaml | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 releasenotes/notes/tls12-only-2025a08207fd562e.yaml diff --git a/defaults/main.yml b/defaults/main.yml index 6b4695b..2faa2ea 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -176,7 +176,7 @@ barbican_ssl: false barbican_ssl_cert: /etc/ssl/certs/barbican.pem barbican_ssl_key: /etc/ssl/private/barbican.key barbican_ssl_ca_cert: /etc/ssl/certs/barbican-ca.pem -barbican_ssl_protocol: "{{ ssl_protocol | default('ALL -SSLv2 -SSLv3') }}" +barbican_ssl_protocol: "{{ ssl_protocol | default('ALL -SSLv2 -SSLv3 -TLSv1.0 -TLSv1.1') }}" barbican_ssl_cipher_suite: "{{ ssl_cipher_suite | default('ECDH+AESGCM:DH+AESGCM:ECDH+AES256:DH+AES256:ECDH+AES128:DH+AES:RSA+AESGCM:RSA+AES:!aNULL:!MD5:!DSS') }}" # if using a self-signed certificate, set this to true to regenerate it diff --git a/releasenotes/notes/tls12-only-2025a08207fd562e.yaml b/releasenotes/notes/tls12-only-2025a08207fd562e.yaml new file mode 100644 index 0000000..cee5358 --- /dev/null +++ b/releasenotes/notes/tls12-only-2025a08207fd562e.yaml @@ -0,0 +1,7 @@ +--- +security: + - | + The default TLS version has been set to TLS1.2. This only allows + version 1.2 of the protocol to be used when terminating or creating TLS + connections. You can change the value with the barbican_ssl_protocol + variable.