Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fgouteroux/terraform-provider-mimir
This terraform provider allows you to interact with grafana mimir.
https://github.com/fgouteroux/terraform-provider-mimir
grafana grafana-mimir prometheus terraform terraform-provider
Last synced: about 4 hours ago
JSON representation
This terraform provider allows you to interact with grafana mimir.
- Host: GitHub
- URL: https://github.com/fgouteroux/terraform-provider-mimir
- Owner: fgouteroux
- License: apache-2.0
- Created: 2022-09-01T13:58:28.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-26T14:06:03.000Z (3 months ago)
- Last Synced: 2024-07-26T15:39:16.987Z (3 months ago)
- Topics: grafana, grafana-mimir, prometheus, terraform, terraform-provider
- Language: Go
- Homepage: https://registry.terraform.io/providers/fgouteroux/mimir/latest/docs
- Size: 327 KB
- Stars: 23
- Watchers: 3
- Forks: 13
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Terraform provider for grafana mimir
This terraform provider allows you to interact with grafana mimir.
Currently only these components could be managed with the api:
- [alertmanager](https://grafana.com/docs/mimir/latest/references/architecture/components/alertmanager/)
- [ruler](https://grafana.com/docs/mimir/latest/references/architecture/components/ruler/)See [Mimir API Reference](https://grafana.com/docs/mimir/latest/references/http-api/)
## Provider `mimir`
Example:
```
provider "mimir" {
ruler_uri = "http://localhost:8080/prometheus"
alertmanager_uri = "http://localhost:8080"
org_id = "mytenant"
}
```### URI path
- ruler_uri (default prefix: /prometheus)
- alertmanager_uri (default prefix: /)> **Warning**
> You may check and adapt provider uri path: `ruler_uri` and `alertmanager_uri`.### Authentication
Grafana Mimir have no authentication support, so this is delegated to a reverse proxy.
See [Grafana Mimir authentication and authorization](https://grafana.com/docs/mimir/v2.7.x/operators-guide/securing/authentication-and-authorization/)
The provider support basic auth, token.
#### Basic auth
```
provider "mimir" {
ruler_uri = "http://localhost:8080/prometheus"
alertmanager_uri = "http://localhost:8080"
org_id = "mytenant"
username = "user"
password = "password"
}
```#### Token
```
provider "mimir" {
ruler_uri = "http://localhost:8080/prometheus"
alertmanager_uri = "http://localhost:8080"
org_id = "mytenant"
token = "supersecrettoken"
}
```### Headers
```
provider "mimir" {
ruler_uri = "http://localhost:8080/prometheus"
alertmanager_uri = "http://localhost:8080"
org_id = "mytenant"
header = {
"Custom-Auth" = "Custom value"
}
}
```## Resource `mimir_rule_group_alerting`
Example:
```
resource "mimir_rule_group_alerting" "test" {
name = "test1"
namespace = "namespace1"
rule {
alert = "HighRequestLatency"
expr = "job:request_latency_seconds:mean5m{job=\"myjob\"} > 0.5"
for = "10m"
labels = {
severity = "warning"
}
annotations = {
summary = "High request latency"
}
}
}
```## Resource `mimir_rule_group_recording`
Example:
```
resource "mimir_rule_group_recording" "record" {
name = "test1"
namespace = "namespace1"
interval = "6h"
query_offset = "5m"
rule {
expr = "sum by (job) (http_inprogress_requests)"
record = "job:http_inprogress_requests:sum"
}
}
```## Resource `mimir_alertmanager_config`
Notification integrations Supported: https://prometheus.io/docs/alerting/latest/configuration/#receiver
Example:
```
resource "mimir_alertmanager_config" "test" {route {
group_by = ["..."]
group_wait = "30s"
group_interval = "5m"
repeat_interval = "1h"
receiver = "pagerduty"
child_route {
group_by = ["..."]
group_wait = "30s"
group_interval = "5m"
repeat_interval = "1h"
receiver = "pagerduty"
}
}receiver {
name = "pagerduty"
pagerduty_configs {
routing_key = "secret"
severity = "info"
details = {
environment = "test"
platform = "sandbox"
}
}
}
}
```## Importing existing resources
This provider supports importing existing resources into the terraform state. Import is done according to the various provider/resource configuation settings to contact the API server and obtain data.### mimir alerting rule group
To import mimir rule group alerting
The id is build as `/`Example:
```
terraform import 'mimir_rule_group_alerting.alert1' namespace1/alert1
mimir_rule_group_alerting.alert1: Importing from ID "namespace1/alert1"...
mimir_rule_group_alerting.alert1: Import prepared!
Prepared mimir_rule_group_alerting for import
mimir_rule_group_alerting.alert1: Refreshing state... [id=namespace1/alert1]Import successful!
The resources that were imported are shown above. These resources are now in
your Terraform state and will henceforth be managed by Terraform.```
### mimir recording rule group
To import mimir rule group recording
The id is build as `/`Example:
```
terraform import 'mimir_rule_group_recording.record1' namespace1/record1
mimir_rule_group_recording.record1: Importing from ID "namespace1/record1"...
mimir_rule_group_recording.record1: Import prepared!
Prepared mimir_rule_group_recording for import
mimir_rule_group_recording.record1: Refreshing state... [id=namespace1/record1]Import successful!
The resources that were imported are shown above. These resources are now in
your Terraform state and will henceforth be managed by Terraform.```
### mimir alertmanager config
To import mimir alertmanager config
The id is build as ``Example:
```
terraform import 'mimir_alertmanager_config.test' test
mimir_alertmanager_config.test: Importing from ID "test"...
mimir_alertmanager_config.test: Import prepared!
Prepared mimir_alertmanager_config for import
mimir_alertmanager_config.test: Refreshing state... [id=test]Import successful!
The resources that were imported are shown above. These resources are now in
your Terraform state and will henceforth be managed by Terraform.```
## Contributing
Pull requests are always welcome! Please be sure the following things are taken care of with your pull request:
* `go fmt` is run before pushing
* Be sure to add a test case for new functionality (or explain why this cannot be done)