infra-status/hosts_store.tf
Jakub Sokołowski 01e2f7bc1e
drop statusim.net domain config in favor of status.im
Signed-off-by: Jakub Sokołowski <jakub@status.im>
2024-03-14 21:56:05 +01:00

29 lines
609 B
HCL

module "store" {
source = "github.com/status-im/infra-tf-multi-provider"
/* node type */
name = "store"
group = "store"
env = "shards"
stage = terraform.workspace
/* scaling */
host_count = local.ws["store_hosts_count"]
/* instance sizes */
do_type = local.ws["do_type"] /* DigitalOcean */
ac_type = local.ws["ac_type"] /* Alibaba Cloud */
gc_type = local.ws["gc_type"] /* Google Cloud */
/* firewall */
open_tcp_ports = [
"30303", /* p2p main */
"443", /* websocket */
"80", /* certbot */
]
open_udp_ports = [
"9000", /* discovery v5 */
]
}