feat(infrastructure): add rabbitmq cluster

This commit is contained in:
2025-09-23 19:45:56 +02:00
parent 6c3f22a30d
commit af8965df31
5 changed files with 122 additions and 6 deletions

View File

@@ -0,0 +1,11 @@
variable "base_domain" {
type = string # The type of the variable, in this case a string
nullable = false # Description of what this variable represents
}
variable "rabbitmq-password" {
type = string
nullable = false
sensitive = true
description = "Admin password for RabbitMQ user"
}