feat(infrastructure): update rabbitmq env

This commit is contained in:
2025-10-05 22:13:07 +02:00
parent d4da625408
commit 7ee45b451e
5 changed files with 43 additions and 6 deletions

View File

@@ -4,8 +4,14 @@ variable "base_domain" {
}
variable "rabbitmq-password" {
type = string
nullable = false
sensitive = true
type = string
nullable = false
sensitive = true
description = "Admin password for RabbitMQ user"
}
variable "rabbitmq_replicas" {
type = number
description = "Number of replicas for the RabbitMQ cluster"
default = 1
}