mirror of
https://github.com/status-im/infra-status.git
synced 2025-01-12 06:54:40 +00:00
Jakub Sokołowski
040b9d4949
While also retaining the old domain names. Signed-off-by: Jakub Sokołowski <jakub@status.im>
29 lines
620 B
HCL
29 lines
620 B
HCL
module "boot" {
|
|
source = "github.com/status-im/infra-tf-multi-provider"
|
|
|
|
/* node type */
|
|
name = "boot"
|
|
group = "boot"
|
|
env = "status"
|
|
stage = terraform.workspace
|
|
|
|
/* scaling */
|
|
host_count = local.ws["boot_hosts_count"]
|
|
|
|
/* instance sizes */
|
|
do_type = local.ws["node_do_type"] /* DigitalOcean */
|
|
ac_type = local.ws["node_ac_type"] /* Alibaba Cloud */
|
|
gc_type = local.ws["node_gc_type"] /* Google Cloud */
|
|
|
|
/* firewall */
|
|
open_tcp_ports = [
|
|
"30303", /* p2p main */
|
|
"443", /* websocket */
|
|
"80", /* certbot */
|
|
]
|
|
open_udp_ports = [
|
|
"9000", /* discovery v5 */
|
|
]
|
|
}
|
|
|