From 691921257fbe6d5b4ded0581c3c7fdfce7de65d6 Mon Sep 17 00:00:00 2001 From: Dmitriy Rabotyagov Date: Tue, 30 Nov 2021 15:17:17 +0200 Subject: [PATCH] Use config_template as a collection Since we still use ceph-ansible that has their own implementation of config_template module it's worth to use mentioned module as a collection explicitly. Depends-On: https://review.opendev.org/c/openstack/openstack-ansible/+/819814 Change-Id: I5e9aac0216a7406fefe4bfe315bd914723c7e27c --- tasks/gnocchi_post_install.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/gnocchi_post_install.yml b/tasks/gnocchi_post_install.yml index 4d5f23e..0aa05d6 100644 --- a/tasks/gnocchi_post_install.yml +++ b/tasks/gnocchi_post_install.yml @@ -23,7 +23,7 @@ register: _git_file_fetch - name: Copy gnocchi configuration files - config_template: + openstack.config_template.config_template: content: "{{ item.content | default(omit) }}" src: "{{ item.src | default(omit) }}" dest: "{{ item.dest }}"