Skip to content
This repository has been archived by the owner on Dec 9, 2022. It is now read-only.

Commit

Permalink
add new go-01.do-ams3.waku.connect host
Browse files Browse the repository at this point in the history
#1

Signed-off-by: Jakub Sokołowski <[email protected]>
  • Loading branch information
jakubgs committed Feb 17, 2022
1 parent cd56814 commit ad7e994
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
6 changes: 6 additions & 0 deletions ansible/inventory/default
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# NOTE: This file is generated by terraform.py
# For emergency use when Consul fails
[all]
go-01.do-ams3.waku.connect hostname=go-01.do-ams3.waku.connect ansible_host=143.198.249.119 env=waku stage=connect data_center=do-ams3 region=ams3 dns_entry=go-01.do-ams3.waku.connect.statusim.net
nim-01.ac-cn-hongkong-c.waku.connect hostname=nim-01.ac-cn-hongkong-c.waku.connect ansible_host=47.242.185.35 env=waku stage=connect data_center=ac-cn-hongkong-c region=cn-hongkong-c dns_entry=nim-01.ac-cn-hongkong-c.waku.connect.statusim.net
nim-01.do-ams3.waku.connect hostname=nim-01.do-ams3.waku.connect ansible_host=206.189.242.0 env=waku stage=connect data_center=do-ams3 region=ams3 dns_entry=nim-01.do-ams3.waku.connect.statusim.net
nim-01.gc-us-central1-a.waku.connect hostname=nim-01.gc-us-central1-a.waku.connect ansible_host=35.193.87.35 env=waku stage=connect data_center=gc-us-central1-a region=us-central1-a dns_entry=nim-01.gc-us-central1-a.waku.connect.statusim.net
Expand All @@ -9,17 +10,22 @@ nim-01.gc-us-central1-a.waku.connect hostname=nim-01.gc-us-central1-a.waku.conne
nim-01.ac-cn-hongkong-c.waku.connect

[do-ams3]
go-01.do-ams3.waku.connect
nim-01.do-ams3.waku.connect

[gc-us-central1-a]
nim-01.gc-us-central1-a.waku.connect

[go-waku-connect]
go-01.do-ams3.waku.connect

[nim-waku-connect]
nim-01.ac-cn-hongkong-c.waku.connect
nim-01.do-ams3.waku.connect
nim-01.gc-us-central1-a.waku.connect

[waku.connect]
go-01.do-ams3.waku.connect
nim-01.ac-cn-hongkong-c.waku.connect
nim-01.do-ams3.waku.connect
nim-01.gc-us-central1-a.waku.connect
Expand Down
22 changes: 22 additions & 0 deletions hosts.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,25 @@ module "nim_waku_nodes" {
"30303", /* p2p main */
]
}

module "go_waku_nodes" {
source = "github.com/status-im/infra-tf-digital-ocean"

/* general */
name = "go"
env = "waku"
stage = "connect"
group = "go-waku-connect"
domain = var.domain

/* scaling */
host_count = 1
type = "s-1vcpu-1gb"

/* firewall */
open_tcp_ports = [
"80", /* certbot */
"443", /* p2p websocket */
"30303", /* p2p main */
]
}

0 comments on commit ad7e994

Please sign in to comment.