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

@@ -96,8 +96,15 @@ variable "cloudflare_account_id" {
}
variable "argocd_admin_password" {
type = string
nullable = false
sensitive = true
type = string
nullable = false
sensitive = true
description = "ArgoCD admin password"
}
}
variable "rabbitmq-password" {
type = string
nullable = false
sensitive = true
description = "Admin password for RabbitMQ user"
}