mirror of
https://github.com/status-im/infra-nimbus.git
synced 2025-01-10 05:45:51 +00:00
Jakub Sokołowski
db456f7f5c
https://www.terraform.io/upgrade-guides/0-15.html https://www.terraform.io/upgrade-guides/1-0.html Signed-off-by: Jakub Sokołowski <jakub@status.im>
19 lines
374 B
HCL
19 lines
374 B
HCL
locals {
|
|
nimbus_ports = [
|
|
"9000-9010", /* Nimbus ports */
|
|
"9100-9110", /* Nimbus ports */
|
|
]
|
|
}
|
|
|
|
module "nimbus_network" {
|
|
source = "github.com/status-im/infra-tf-aws-vpc"
|
|
|
|
name = "nimbus"
|
|
stage = "test"
|
|
zones = ["eu-central-1a"]
|
|
|
|
/* Firewall */
|
|
open_udp_ports = local.nimbus_ports
|
|
open_tcp_ports = concat(local.nimbus_ports, ["22", "80", "443"])
|
|
}
|