mirror of
https://github.com/dat515-2025/Group-8.git
synced 2026-03-22 23:20:56 +01:00
12 lines
303 B
HCL
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"
|
|
}
|