Wrong quotes.

This commit is contained in:
Andrea Dell'Amico 2022-12-19 18:57:51 +01:00
parent 5eba654280
commit f4b3eedef6
Signed by: andrea.dellamico
GPG Key ID: 147ABE6CEB9E20FF
1 changed files with 2 additions and 2 deletions

View File

@ -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' ]