25 lines
518 B
Terraform
25 lines
518 B
Terraform
|
module "boot" {
|
||
|
source = "github.com/status-im/infra-tf-multi-provider"
|
||
|
|
||
|
/* node type */
|
||
|
name = "boot"
|
||
|
group = "boot"
|
||
|
env = "shards"
|
||
|
stage = terraform.workspace
|
||
|
domain = var.domain
|
||
|
|
||
|
/* scaling */
|
||
|
host_count = local.ws["boot_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 */
|
||
|
]
|
||
|
}
|
||
|
|