feat(observability): Add missing support for OpsGenie priority level (#931)

relates to STACKITCDN-879

Co-authored-by: Ruben Hoenle <Ruben.Hoenle@stackit.cloud>
This commit is contained in:
Christian Hamm 2025-08-25 17:25:19 +02:00 committed by GitHub
parent 4b670ee73f
commit 971cd27e4b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 47 additions and 24 deletions

View file

@ -26,6 +26,7 @@ variable "email_to" {}
variable "opsgenie_api_key" {}
variable "opsgenie_api_tags" {}
variable "opsgenie_api_url" {}
variable "opsgenie_priority" {}
variable "webhook_configs_url" {}
variable "ms_teams" {}
variable "group_by" {}
@ -114,9 +115,10 @@ resource "stackit_observability_instance" "instance" {
]
opsgenie_configs = [
{
api_key = var.opsgenie_api_key
tags = var.opsgenie_api_tags
api_url = var.opsgenie_api_url
api_key = var.opsgenie_api_key
tags = var.opsgenie_api_tags
api_url = var.opsgenie_api_url
priority = var.opsgenie_priority
}
]
webhooks_configs = [