mirror of
https://github.com/status-im/infra-nimbus.git
synced 2025-01-14 07:44:26 +00:00
Jakub Sokołowski
db456f7f5c
https://www.terraform.io/upgrade-guides/0-15.html https://www.terraform.io/upgrade-guides/1-0.html Signed-off-by: Jakub Sokołowski <jakub@status.im>
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"]
|
|
}
|