mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-19 16:57:40 +07:00
17 lines
311 B
HCL
17 lines
311 B
HCL
resource "kubernetes_secret" "ntfy_auth" {
|
|
metadata {
|
|
name = "ntfy.auth"
|
|
namespace = "global-secrets"
|
|
|
|
annotations = {
|
|
"app.kubernetes.io/managed-by" = "Terraform"
|
|
}
|
|
}
|
|
|
|
data = {
|
|
url = var.auth.url
|
|
username = var.auth.username
|
|
password = var.auth.password
|
|
}
|
|
}
|