fix prev checkin: tls sg for teams was wrong

This commit is contained in:
Dave Horton
2020-06-08 08:50:06 -04:00
parent 29bcbbe994
commit 1ed20974ef
8 changed files with 15 additions and 20 deletions

View File

@@ -131,9 +131,9 @@ resource "aws_security_group" "allow_jambonz_sbc_sip_rtp" {
ingress {
description = "sip tls for teams"
from_port = 5060
to_port = 5060
protocol = "udp"
from_port = 5061
to_port = 5061
protocol = "tcp"
cidr_blocks = ["52.114.148.0/32", "52.114.132.46/32", "52.114.75.24/32", "52.114.76.76/32", "52.114.7.24/32", "52.114.14.70/32"]
}

View File

@@ -139,9 +139,9 @@ resource "aws_security_group" "allow_jambonz_sbc_sip" {
ingress {
description = "sip tls for teams"
from_port = 5060
to_port = 5060
protocol = "udp"
from_port = 5061
to_port = 5061
protocol = "tcp"
cidr_blocks = ["52.114.148.0/32", "52.114.132.46/32", "52.114.75.24/32", "52.114.76.76/32", "52.114.7.24/32", "52.114.14.70/32"]
}