From b0642aacfcb3ab27235c5614dc8815f4599f098e Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Fri, 6 Aug 2021 10:10:26 +0900 Subject: [PATCH] Replace deprecated aodh::auth ... by the new aodh::service_credentials class[1]. [1] e05af2b3f1dbb5ba74e5428ef3e74e4bfc096531 Change-Id: Ib31e0c85fc031327db76f3255aef123f73c66096 --- manifests/aodh.pp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/manifests/aodh.pp b/manifests/aodh.pp index 2548155f4..c8f07785e 100644 --- a/manifests/aodh.pp +++ b/manifests/aodh.pp @@ -80,9 +80,9 @@ class openstack_integration::aodh ( ssl_cert => $::openstack_integration::params::cert_path, workers => 2, } - class { 'aodh::auth': - auth_url => $::openstack_integration::config::keystone_auth_uri, - auth_password => 'a_big_secret', + class { 'aodh::service_credentials': + auth_url => $::openstack_integration::config::keystone_auth_uri, + password => 'a_big_secret', } class { 'aodh::client': } class { 'aodh::notifier': }