889be10904
This adds support for running swift as the messaging backend of Zaqar, and SQLAlchemy as the management backend. Change-Id: I448d303d01e33a0d89625d7ff442b652838d9c36
22 lines
435 B
Puppet
22 lines
435 B
Puppet
# == class: zaqar::messaging::swift
|
|
#
|
|
# [*uri*]
|
|
# Swift Connection URI. Required.
|
|
#
|
|
# [*auth_url*]
|
|
# URL to the KeyStone service. Default $::os_service_default
|
|
#
|
|
class zaqar::messaging::swift(
|
|
$uri,
|
|
$auth_url = $::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;
|
|
}
|
|
|
|
}
|