terraform: open p2p ports in cloud firewall settings
https://github.com/status-im/infra-shards/issues/2
This commit is contained in:
parent
a947d00546
commit
b88958e804
|
@ -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 */
|
||||
]
|
||||
|
|
|
@ -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 */
|
||||
]
|
||||
|
|
Loading…
Reference in New Issue