зеркало из https://github.com/mozilla/hubs-ops.git
Missing egress rules
This commit is contained in:
Родитель
abacbbd95d
Коммит
2323ccf6b3
|
@ -164,6 +164,14 @@ resource "aws_security_group" "builder" {
|
|||
cidr_blocks = ["0.0.0.0/0"]
|
||||
}
|
||||
|
||||
# InfluxDB
|
||||
egress {
|
||||
from_port = "8086"
|
||||
to_port = "8086"
|
||||
protocol = "tcp"
|
||||
cidr_blocks = ["0.0.0.0/0"]
|
||||
}
|
||||
|
||||
# NFS upload-fs
|
||||
egress {
|
||||
from_port = "2049"
|
||||
|
|
|
@ -70,6 +70,14 @@ resource "aws_security_group" "ci" {
|
|||
cidr_blocks = ["0.0.0.0/0"]
|
||||
}
|
||||
|
||||
# InfluxDB
|
||||
egress {
|
||||
from_port = "8086"
|
||||
to_port = "8086"
|
||||
protocol = "tcp"
|
||||
cidr_blocks = ["0.0.0.0/0"]
|
||||
}
|
||||
|
||||
# Git (for fetching deps)
|
||||
egress {
|
||||
from_port = "9418"
|
||||
|
|
|
@ -52,6 +52,14 @@ resource "aws_security_group" "discord" {
|
|||
protocol = "udp"
|
||||
cidr_blocks = ["0.0.0.0/0"]
|
||||
}
|
||||
|
||||
# InfluxDB
|
||||
egress {
|
||||
from_port = "8086"
|
||||
to_port = "8086"
|
||||
protocol = "tcp"
|
||||
cidr_blocks = ["0.0.0.0/0"]
|
||||
}
|
||||
}
|
||||
|
||||
resource "aws_iam_role" "discord" {
|
||||
|
|
|
@ -119,6 +119,14 @@ resource "aws_security_group" "janus" {
|
|||
protocol = "udp"
|
||||
cidr_blocks = ["0.0.0.0/0"]
|
||||
}
|
||||
|
||||
# InfluxDB
|
||||
egress {
|
||||
from_port = "8086"
|
||||
to_port = "8086"
|
||||
protocol = "tcp"
|
||||
cidr_blocks = ["0.0.0.0/0"]
|
||||
}
|
||||
}
|
||||
|
||||
resource "aws_iam_role" "janus" {
|
||||
|
|
|
@ -144,6 +144,14 @@ resource "aws_security_group" "postgrest" {
|
|||
protocol = "udp"
|
||||
cidr_blocks = ["0.0.0.0/0"]
|
||||
}
|
||||
|
||||
# InfluxDB
|
||||
egress {
|
||||
from_port = "8086"
|
||||
to_port = "8086"
|
||||
protocol = "tcp"
|
||||
cidr_blocks = ["0.0.0.0/0"]
|
||||
}
|
||||
}
|
||||
|
||||
resource "aws_iam_role" "postgrest" {
|
||||
|
|
|
@ -143,6 +143,14 @@ resource "aws_security_group" "ytdl" {
|
|||
protocol = "udp"
|
||||
cidr_blocks = ["0.0.0.0/0"]
|
||||
}
|
||||
|
||||
# InfluxDB
|
||||
egress {
|
||||
from_port = "8086"
|
||||
to_port = "8086"
|
||||
protocol = "tcp"
|
||||
cidr_blocks = ["0.0.0.0/0"]
|
||||
}
|
||||
}
|
||||
|
||||
resource "aws_iam_role" "ytdl" {
|
||||
|
|
Загрузка…
Ссылка в новой задаче