Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/timtorchen/terraform-module-grafana-alert

Terraform module to create grafana alerts
https://github.com/timtorchen/terraform-module-grafana-alert

grafana grafana-alerts terraform terraform-module

Last synced: about 2 months ago
JSON representation

Terraform module to create grafana alerts

Awesome Lists containing this project

README

        

# Terraform grafana alert module

⚠️ This project is still under development; use it with caution.

Terraform module to create grafana alerts.

## Usage

```hcl
resource "grafana_data_source" "prometheus" {
}

resource "grafana_data_source" "aws" {
}

module "grafana-alert" {
source = "timtorChen/grafana-alert/module"
version = "~> 0.4.0"

prom_datasource_uid = grafana_data_source.prometheus.uid
enable_ceph_alert = true
enable_etcd_alert = true
enable_node_alert = true

aws_datasource_uid = grafana_data_source.aws.uid
enable_efs_alert = true
}
```