mirror of
https://github.com/dat515-2025/Group-8.git
synced 2026-03-22 15:12:08 +01:00
18 lines
452 B
HCL
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
|
|
}
|