mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-31 01:44:47 +07:00
16 lines
292 B
HCL
16 lines
292 B
HCL
resource "kubernetes_secret" "ntfy_auth" {
|
|
metadata {
|
|
name = "webhook-transformer"
|
|
namespace = "monitoring-system"
|
|
|
|
annotations = {
|
|
"app.kubernetes.io/managed-by" = "Terraform"
|
|
}
|
|
}
|
|
|
|
data = {
|
|
NTFY_URL = var.auth.url
|
|
NTFY_TOPIC = var.auth.topic
|
|
}
|
|
}
|