Skip to content

Commit

Permalink
Squashed commit of the following:
Browse files Browse the repository at this point in the history
commit cf0ba371a2298bb19e9d80e995a821b61df8e1ef
Merge: 0d0a9fd cd0edb3
Author: Nemental <[email protected]>
Date:   Fri Dec 8 09:11:37 2023 +0100

    Merge branch 'main' into feat/datasource-by-org-name

commit 0d0a9fd90e9a60cc185d85dc022ff5516f1678c1
Author: Nemental <[email protected]>
Date:   Thu Dec 7 20:21:14 2023 +0100

    fix: add org_name for datasource task

commit 4ec3e68ef755d320332e75232603b3ee8047f486
Author: Nemental <[email protected]>
Date:   Thu Dec 7 20:20:59 2023 +0100

    docs: add org_name to readme
  • Loading branch information
Nemental committed Jan 16, 2024
1 parent ad197b9 commit 2a213c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions roles/grafana/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ Configure Grafana organizations, dashboards, folders, datasources, teams and use
| [**grafana_datasources**](https://docs.ansible.com/ansible/latest/collections/community/grafana/grafana_datasource_module.html) |
| tls_skip_verify | no |
| org_id | no |
| org_name | no |
| name | yes |
| ds_type | no |
| access | no |
Expand Down
1 change: 1 addition & 0 deletions roles/grafana/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
community.grafana.grafana_datasource:
tls_skip_verify: "{{ datasource.tls_skip_verify | default(omit) }}"
org_id: "{{ datasource.org_id | default(omit) }}"
org_name: "{{ datasource.org_name | default(omit) }}"
name: "{{ datasource.name }}"
ds_type: "{{ datasource.ds_type | default(omit) }}"
access: "{{ datasource.access | default(omit) }}"
Expand Down

0 comments on commit 2a213c0

Please sign in to comment.