split fleet.tf into two files

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2020-11-23 18:31:37 +01:00
parent c2aff03dde
commit 890ff620f2
No known key found for this signature in database
GPG Key ID: 4EF064D0E6D63020
2 changed files with 14 additions and 15 deletions

View File

@ -17,18 +17,3 @@ module "nim_waku" {
/* firewall */ /* firewall */
open_tcp_ports = [ "443" /* p2p */ ] open_tcp_ports = [ "443" /* p2p */ ]
} }
module "nim_waku_v2" {
source = "github.com/status-im/infra-tf-digital-ocean"
/* node type */
env = "wakuv2"
group = "wakuv2"
domain = var.domain
/* instance sizes */
size = "s-1vcpu-1gb"
/* firewall */
open_tcp_ports = [ "60000" /* p2p */ ]
}

14
wakuv2.tf Normal file
View File

@ -0,0 +1,14 @@
module "nim_waku_v2" {
source = "github.com/status-im/infra-tf-digital-ocean"
/* node type */
env = "wakuv2"
group = "wakuv2"
domain = var.domain
/* instance sizes */
size = "s-1vcpu-1gb"
/* firewall */
open_tcp_ports = [ "60000" /* p2p */ ]
}