
... because the latest lint no longer allows usage of legacy facts and top scope fact. Change-Id: If6eb852b44673ea6b6a629aa1381b78bb6ae5646
22 lines
447 B
Puppet
22 lines
447 B
Puppet
# == class: zaqar::messaging::swift
|
|
#
|
|
# [*uri*]
|
|
# Swift Connection URI. Required.
|
|
#
|
|
# [*auth_url*]
|
|
# URL to the KeyStone service. Default $facts['os_service_default']
|
|
#
|
|
class zaqar::messaging::swift(
|
|
$uri,
|
|
$auth_url = $facts['os_service_default'],
|
|
) {
|
|
|
|
include zaqar::deps
|
|
|
|
zaqar_config {
|
|
'drivers:message_store:swift/uri': value => $uri, secret => true;
|
|
'drivers:message_store:swift/auth_url': value => $auth_url;
|
|
}
|
|
|
|
}
|