mirror of
https://github.com/RWejlgaard/pez-infra.git
synced 2026-05-06 04:14:43 +00:00
13 lines
352 B
HCL
13 lines
352 B
HCL
data "pagerduty_vendor" "prometheus" {
|
|
name = "Prometheus"
|
|
}
|
|
|
|
resource "pagerduty_service_integration" "grafana_cloud" {
|
|
name = "Grafana"
|
|
service = pagerduty_service.pez_solutions.id
|
|
vendor = data.pagerduty_vendor.prometheus.id
|
|
}
|
|
|
|
output "pagerduty_integration_key" {
|
|
value = pagerduty_service_integration.grafana_cloud.integration_key
|
|
}
|