mirror of
https://github.com/dat515-2025/Group-8.git
synced 2026-03-22 15:12:08 +01:00
refactor(structure): move to 7project dir
This commit is contained in:
11
7project/tofu/modules/rabbitmq/variables.tf
Normal file
11
7project/tofu/modules/rabbitmq/variables.tf
Normal file
@@ -0,0 +1,11 @@
|
||||
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"
|
||||
}
|
||||
Reference in New Issue
Block a user