diff --git a/terraform/aks/application.tf b/terraform/aks/application.tf index 88dbc19f5..bb1d52483 100644 --- a/terraform/aks/application.tf +++ b/terraform/aks/application.tf @@ -61,4 +61,6 @@ module "worker_application" { max_memory = var.sidekiq_memory_max replicas = var.sidekiq_replicas enable_logit = var.enable_logit + + enable_prometheus_monitoring = var.enable_prometheus_monitoring } diff --git a/terraform/aks/config/review.tfvars.json b/terraform/aks/config/review.tfvars.json index 6108c09c3..6122a0e0b 100644 --- a/terraform/aks/config/review.tfvars.json +++ b/terraform/aks/config/review.tfvars.json @@ -17,5 +17,6 @@ "sidekiq_replicas" : 1, "sidekiq_memory_max" : "1Gi", "create_dsi_ingress": true, - "enable_logit": true + "enable_logit": true, + "enable_prometheus_monitoring": true }