puppet-manila/manifests/coordination.pp
Takashi Kajinami c6e82df318 Replace legacy facts and use fact hash
... because the latest lint no longer allows usage of legacy facts and
top scope fact.

Change-Id: I7de4bd06c59b921c8774accf462db1cf434d5cf6
2023-03-02 11:45:41 +09:00

21 lines
396 B
Puppet

# == Class: manila::coordination
#
# Setup and configure Manila coordination settings.
#
# === Parameters
#
# [*backend_url*]
# (Optional) Coordination backend URL.
# Defaults to $facts['os_service_default']
#
class manila::coordination (
$backend_url = $facts['os_service_default'],
) {
include manila::deps
oslo::coordination{ 'manila_config':
backend_url => $backend_url
}
}