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

12 lines
303 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"
}