diff --git a/fixtures/scenario001.pp b/fixtures/scenario001.pp index d0e2ae069..57fabbea7 100644 --- a/fixtures/scenario001.pp +++ b/fixtures/scenario001.pp @@ -38,6 +38,7 @@ case $::osfamily { include ::openstack_integration class { '::openstack_integration::config': + ssl => true, ipv6 => $ipv6, rpc_backend => $om_rpc, notify_backend => $om_notify, diff --git a/fixtures/scenario003.pp b/fixtures/scenario003.pp index d0fb149af..2400a6f33 100644 --- a/fixtures/scenario003.pp +++ b/fixtures/scenario003.pp @@ -47,6 +47,7 @@ if ($::operatingsystem == 'Ubuntu') and (versioncmp($::operatingsystemmajrelease include ::openstack_integration class { '::openstack_integration::config': + ssl => true, ipv6 => $ipv6, } include ::openstack_integration::cacert diff --git a/fixtures/scenario004.pp b/fixtures/scenario004.pp index 98a4ca4bc..0bfe495bb 100644 --- a/fixtures/scenario004.pp +++ b/fixtures/scenario004.pp @@ -29,6 +29,7 @@ if $::operatingsystem == 'Ubuntu' { include ::openstack_integration class { '::openstack_integration::config': + ssl => true, ipv6 => $ipv6, } diff --git a/manifests/config.pp b/manifests/config.pp index c41b9d052..561ac3e07 100644 --- a/manifests/config.pp +++ b/manifests/config.pp @@ -2,7 +2,7 @@ # # [*ssl*] # (optional) Boolean to enable or not SSL. -# Defaults to true. +# Defaults to false. # # [*ipv6*] # (optional) Boolean to enable or not IPv6. @@ -18,7 +18,7 @@ # Defaults to 'rabbit'. # class openstack_integration::config ( - $ssl = true, + $ssl = false, $ipv6 = false, $rpc_backend = 'rabbit', $notify_backend = 'rabbit',