Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/timtorchen/terraform-module-grafana-alert
- Owner: timtorChen
- License: mit
- Created: 2024-09-26T07:58:40.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-10-04T07:09:14.000Z (4 months ago)
- Last Synced: 2024-12-01T08:12:40.417Z (about 2 months ago)
- Topics: grafana, grafana-alerts, terraform, terraform-module
- Language: HCL
- Homepage: https://registry.terraform.io/modules/timtorChen/grafana-alert/module/latest
- Size: 56.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 = trueaws_datasource_uid = grafana_data_source.aws.uid
enable_efs_alert = true
}
```