terraform: open p2p ports in cloud firewall settings

https://github.com/status-im/infra-shards/issues/2
This commit is contained in:
Anton Iakimov 2023-09-28 16:47:57 +02:00
parent a947d00546
commit b88958e804
No known key found for this signature in database
GPG Key ID: DEA1FE58DD8BF7FA
2 changed files with 6 additions and 0 deletions

View File

@ -17,6 +17,9 @@ module "boot" {
gc_type = local.ws["gc_type"] /* Google Cloud */
/* firewall */
open_tcp_ports = [
"30303", /* p2p main */
]
open_udp_ports = [
"9000", /* discovery v5 */
]

View File

@ -17,6 +17,9 @@ module "store" {
gc_type = local.ws["gc_type"] /* Google Cloud */
/* firewall */
open_tcp_ports = [
"30303", /* p2p main */
]
open_udp_ports = [
"9000", /* discovery v5 */
]