add additional confguration for ingress [ci skip]

This commit is contained in:
Viktor Barzin 2025-12-18 10:45:03 +00:00
parent 07c6f46832
commit 31af5ec01d

View file

@ -59,6 +59,10 @@ variable "rybbit_site_id" {
default = null
type = string
}
variable "additional_configuration_snippet" {
type = string
default = ""
}
resource "kubernetes_service" "proxied-service" {
@ -133,6 +137,7 @@ resource "kubernetes_ingress_v1" "proxied-ingress" {
JS
: ""
}
${var.additional_configuration_snippet}
EOF
}, var.extra_annotations)