mirror of
https://github.com/status-im/infra-status.git
synced 2025-01-12 23:14:51 +00:00
c6a8cbbe6a
We only need 1 boot instance for testing. Data is stored in PostgreSQL on separate nodes.
25 lines
522 B
HCL
25 lines
522 B
HCL
module "store" {
|
|
source = "github.com/status-im/infra-tf-multi-provider"
|
|
|
|
/* node type */
|
|
name = "store"
|
|
group = "store"
|
|
env = "shards"
|
|
stage = terraform.workspace
|
|
domain = var.domain
|
|
|
|
/* 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_udp_ports = [
|
|
"9000", /* discovery v5 */
|
|
]
|
|
}
|
|
|