889be10904
This adds support for running swift as the messaging backend of Zaqar, and SQLAlchemy as the management backend. Change-Id: I448d303d01e33a0d89625d7ff442b652838d9c36
17 lines
274 B
Puppet
17 lines
274 B
Puppet
# == class: zaqar::management::sqlalchemy
|
|
#
|
|
# [*uri*]
|
|
# SQLAlchemy Connection URI. Required.
|
|
#
|
|
class zaqar::management::sqlalchemy(
|
|
$uri,
|
|
) {
|
|
|
|
include ::zaqar::deps
|
|
|
|
zaqar_config {
|
|
'drivers:management_store:sqlalchemy/uri': value => $uri, secret => true;
|
|
}
|
|
|
|
}
|