Files
uis-cloud-computing/7project/tofu/modules/rabbitmq/variables.tf

18 lines
452 B
HCL

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"
}
variable "rabbitmq_replicas" {
type = number
description = "Number of replicas for the RabbitMQ cluster"
default = 1
}