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

Change-Id: I309dc0910bf7111cba3aaa58688b862590043973
2023-03-01 16:57:02 +09:00

21 lines
396 B
Puppet

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