Skip to content

Commit

Permalink
Merge "Switch to TLSv1 as SSLv3 is considered insecure and is disable…
Browse files Browse the repository at this point in the history
…d by default" into stable/juno
  • Loading branch information
Jenkins authored and openstack-gerrit committed Jan 28, 2015
2 parents c5c7f4a + bf082e4 commit b92d9ae
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
# (optional) SSL version to use (valid only if SSL enabled).
# Valid values are TLSv1, SSLv23 and SSLv3. SSLv2 may be
# available on some distributions.
# Defaults to 'SSLv3'
# Defaults to 'TLSv1'
#
# [*qpid_hostname*]
# [*qpid_port*]
Expand Down Expand Up @@ -91,7 +91,7 @@
$kombu_ssl_ca_certs = undef,
$kombu_ssl_certfile = undef,
$kombu_ssl_keyfile = undef,
$kombu_ssl_version = 'SSLv3',
$kombu_ssl_version = 'TLSv1',
$qpid_hostname = 'localhost',
$qpid_port = 5672,
$qpid_username = 'guest',
Expand Down
2 changes: 1 addition & 1 deletion spec/classes/ceilometer_init_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@
it { should contain_ceilometer_config('DEFAULT/kombu_ssl_ca_certs').with_ensure('absent') }
it { should contain_ceilometer_config('DEFAULT/kombu_ssl_certfile').with_ensure('absent') }
it { should contain_ceilometer_config('DEFAULT/kombu_ssl_keyfile').with_ensure('absent') }
it { should contain_ceilometer_config('DEFAULT/kombu_ssl_version').with_value('SSLv3') }
it { should contain_ceilometer_config('DEFAULT/kombu_ssl_version').with_value('TLSv1') }
end

context "with SSL wrongly configured" do
Expand Down

0 comments on commit b92d9ae

Please sign in to comment.