32 lines
741 B
HCL
32 lines
741 B
HCL
/* GENERAL --------------------------------------*/
|
|
|
|
variable "public_domain" {
|
|
description = "Domain under which the public sites go."
|
|
default = "status.im"
|
|
}
|
|
|
|
variable "domain" {
|
|
description = "DNS Domain to update"
|
|
default = "statusim.net"
|
|
}
|
|
|
|
/* RESOURCES ------------------------------------*/
|
|
|
|
variable "hosts_count" {
|
|
description = "Count of hosts in nimbus cluster."
|
|
default = 9
|
|
}
|
|
|
|
variable "log_stores_count" {
|
|
description = "Count of ElasticSearch cluster hosts."
|
|
default = 3
|
|
}
|
|
|
|
/* NIMBUS TEAM -----------------------------------*/
|
|
|
|
variable "nimbus_team_members" {
|
|
description = "List of Nimbus team members with Console access."
|
|
type = list(string)
|
|
default = ["stefantalpalaru"]
|
|
}
|