diff --git a/deployments/wazuh/ps6/main.tf b/deployments/wazuh/ps6/main.tf index d0d99e6..94b0c6a 100644 --- a/deployments/wazuh/ps6/main.tf +++ b/deployments/wazuh/ps6/main.tf @@ -19,13 +19,14 @@ resource "openstack_objectstorage_container_v1" "wazuh_indexer_backup" { } module "wazuh" { - source = "git::https://github.com/canonical/wazuh-server-operator//terraform/product?ref=rev225&depth=1" + source = "git::https://github.com/canonical/wazuh-server-operator//terraform/product?ref=rev244&depth=1" server_model_name = var.server_model_name server_model_uuid = var.server_model_uuid indexer_model_name = var.indexer_model_name indexer_model_uuid = var.indexer_model_uuid dashboard_model_name = var.dashboard_model_name dashboard_model_uuid = var.dashboard_model_uuid + indexer_consumers = var.indexer_consumers wazuh_indexer = { app_name = "wazuh-indexer-v5" diff --git a/deployments/wazuh/ps6/variables.tf b/deployments/wazuh/ps6/variables.tf index d13758b..1077567 100644 --- a/deployments/wazuh/ps6/variables.tf +++ b/deployments/wazuh/ps6/variables.tf @@ -28,6 +28,12 @@ variable "server_model_uuid" { type = string } +variable "indexer_consumers" { + type = list(string) + description = "Additional model names that need consume access to the indexer offer" + default = [] +} + variable "grafana_offer_url" { description = "Grafana offer URL" type = string