As messaging_urls option contains rabbit_password value, it should
be secured.
Change-Id: I503180280a5558d27c00368e9949aaed52151e79
Closes-Bug: #
1676708
'notification/store_events' : value => $store_events;
'notification/disable_non_metric_meters': value => $disable_non_metric_meters;
'notification/workers' : value => $notification_workers;
- 'notification/messaging_urls' : value => $messaging_urls;
+ 'notification/messaging_urls' : value => $messaging_urls, secret => true;
}
}
it 'configures two messaging urls' do
is_expected.to contain_ceilometer_config('notification/messaging_urls').with_value(
['rabbit://rabbit_user:password@localhost/nova', 'rabbit://rabbit_user:password@localhost/neutron']
- )
+ ).with_secret(true)
end
end