infra-status/hosts_store_db.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

24 lines
628 B
HCL

module "store-db" {
source = "github.com/status-im/infra-tf-multi-provider"
/* node type */
name = "store-db"
group = "store-db"
env = "shards"
stage = terraform.workspace
/* scaling */
host_count = local.ws["store_db_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 */
/* data volumes */
ac_data_vol_size = local.ws["store_db_data_vol_size"]
do_data_vol_size = local.ws["store_db_data_vol_size"]
gc_data_vol_size = local.ws["store_db_data_vol_size"]
}