Skip to content

Commit

Permalink
adding default
Browse files Browse the repository at this point in the history
  • Loading branch information
jseiser authored and rrey committed Feb 17, 2022
1 parent 55e16f5 commit 1e3abfc
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,13 @@ Grafana Collection Release Notes
================================

.. contents:: Topics
v1.3.1
======

Minor Changes
-------------

- community.grafana.grafana_datasource supports aws_auth_type of default.

v1.3.0
======
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[![Codecov](https://img.shields.io/codecov/c/github/ansible-collections/grafana)](https://codecov.io/gh/ansible-collections/community.grafana)
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
[![All Contributors](https://img.shields.io/badge/all_contributors-15-orange.svg?style=flat-square)](#contributors-)
<!-- ALL-CONTRIBUTORS-BADGE:END -->
<!-- ALL-CONTRIBUTORS-BADGE:END -->

This repo hosts the `community.grafana` Ansible Collection.

Expand Down Expand Up @@ -48,7 +48,7 @@ You can also include it in a `requirements.yml` file and install it via `ansible
---
collections:
- name: community.grafana
version: 1.2.0
version: 1.3.1
```
### Using modules from the Grafana Collection in your playbooks
Expand Down
6 changes: 3 additions & 3 deletions galaxy.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
namespace: community
name: grafana
version: 1.3.0
version: 1.3.1
readme: README.md
authors:
- Rémi REY (@rrey)
- Thierry Sallé (@seuf)
- Rémi REY (@rrey)
- Thierry Sallé (@seuf)
description: Collection allowing to interact with Grafana APIs
license_file: LICENSE
tags:
Expand Down
3 changes: 2 additions & 1 deletion plugins/modules/grafana_datasource.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,7 @@
- keys
- credentials
- arn
- default
type: str
aws_default_region:
description:
Expand Down Expand Up @@ -688,7 +689,7 @@ def main():
tsdb_resolution=dict(type='str', default='second', choices=['second', 'millisecond']),
sslmode=dict(default='disable', choices=['disable', 'require', 'verify-ca', 'verify-full']),
trends=dict(default=False, type='bool'),
aws_auth_type=dict(default='keys', choices=['keys', 'credentials', 'arn']),
aws_auth_type=dict(default='keys', choices=['keys', 'credentials', 'arn', 'default']),
aws_default_region=dict(default='us-east-1', choices=['ap-northeast-1', 'ap-northeast-2', 'ap-southeast-1', 'ap-southeast-2', 'ap-south-1',
'ca-central-1',
'cn-north-1', 'cn-northwest-1',
Expand Down

0 comments on commit 1e3abfc

Please sign in to comment.