2019-03-20 13:35:10 +01:00
|
|
|
/* GENERAL --------------------------------------*/
|
|
|
|
|
2019-07-28 22:35:57 -04:00
|
|
|
variable "public_domain" {
|
2019-03-20 13:35:10 +01:00
|
|
|
description = "Domain under which the public sites go."
|
|
|
|
default = "status.im"
|
|
|
|
}
|
|
|
|
|
2019-03-21 13:27:16 +01:00
|
|
|
/* RESOURCES ------------------------------------*/
|
|
|
|
|
2019-07-28 22:35:57 -04:00
|
|
|
variable "hosts_count" {
|
2020-02-03 12:00:27 +01:00
|
|
|
description = "Count of hosts in nimbus cluster."
|
2019-03-21 16:31:40 +01:00
|
|
|
default = 9
|
2019-03-21 13:27:16 +01:00
|
|
|
}
|
2020-02-03 12:00:27 +01:00
|
|
|
|
|
|
|
variable "log_stores_count" {
|
|
|
|
description = "Count of ElasticSearch cluster hosts."
|
|
|
|
default = 3
|
|
|
|
}
|
2020-05-25 18:49:07 +02:00
|
|
|
|
|
|
|
/* NIMBUS TEAM -----------------------------------*/
|
|
|
|
|
|
|
|
variable "nimbus_team_members" {
|
|
|
|
description = "List of Nimbus team members with Console access."
|
|
|
|
type = list(string)
|
2022-05-24 18:21:09 +02:00
|
|
|
default = []
|
2020-05-25 18:49:07 +02:00
|
|
|
}
|