add modsecurity waf to ingress with some blacklisted ips [ci skip]

This commit is contained in:
Viktor Barzin 2023-11-18 18:38:59 +00:00
parent dc565c4d87
commit b7fc4fd8f0
No known key found for this signature in database
GPG key ID: 4056458DBDBF8863
6 changed files with 344 additions and 2 deletions

View file

@ -43,6 +43,7 @@ variable "finance_app_gocardless_secret_key" {}
variable "finance_app_gocardless_secret_id" {}
variable "headscale_config" {}
variable "immich_postgresql_password" {}
variable "ingress_honeypotapikey" {}
resource "null_resource" "core_services" {
# List all the core modules that must be provisioned first
@ -341,5 +342,6 @@ module "immich" {
}
module "nginx-ingress" {
source = "./nginx-ingress"
source = "./nginx-ingress"
honeypotapikey = var.ingress_honeypotapikey
}