From f4b3eedef6542c906fb59f93c263796e41b943ab Mon Sep 17 00:00:00 2001 From: Andrea Dell'Amico Date: Mon, 19 Dec 2022 18:57:51 +0100 Subject: [PATCH] Wrong quotes. --- tasks/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/main.yml b/tasks/main.yml index f5a0763..52c61ed 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -51,8 +51,8 @@ - name: Install additional plugins, if any community.grafana.grafana_plugin: name: '{{ item.name }}' - state: '{{ item.state | default('present') }}' - grafana_repo: '{{ item.repo | default('https://grafana.com/api/plugins') }}' + state: "{{ item.state | default('present') }}" + grafana_repo: "{{ item.repo | default('https://grafana.com/api/plugins') }}" loop: '{{ grafana_additional_plugins }}' tags: [ 'grafana', 'grafana_plugins' ]