From 83cca2a018273583227d83b78a47329e315c90eb Mon Sep 17 00:00:00 2001 From: Arturo Seijas Date: Fri, 27 Feb 2026 11:28:25 +0100 Subject: [PATCH] Expose Wazuh server storage --- deployments/wazuh/ps6/main.tf | 2 +- deployments/wazuh/ps6/variables.tf | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/deployments/wazuh/ps6/main.tf b/deployments/wazuh/ps6/main.tf index 94b0c6a..7a63436 100644 --- a/deployments/wazuh/ps6/main.tf +++ b/deployments/wazuh/ps6/main.tf @@ -57,8 +57,8 @@ module "wazuh" { logs-ca-cert = var.logs_ca_certificate custom-config-ssh-key = "secret:${juju_secret.git_ssh_key.secret_id}" custom-config-repository = var.wazuh_custom_config_repository - } + storage = var.wazuh_server_storage } traefik_k8s = { diff --git a/deployments/wazuh/ps6/variables.tf b/deployments/wazuh/ps6/variables.tf index 1077567..474753a 100644 --- a/deployments/wazuh/ps6/variables.tf +++ b/deployments/wazuh/ps6/variables.tf @@ -95,3 +95,8 @@ variable "wazuh_indexer_units" { type = number default = 3 } + +variable "wazuh_server_storage" { + description = "Storage constraints for the Wazuh Server" + type = string +}