allow sip tls from ms teams proxies

This commit is contained in:
Dave Horton
2020-06-07 18:22:57 -04:00
parent f9196602ea
commit 29bcbbe994
2 changed files with 16 additions and 0 deletions

View File

@@ -129,6 +129,14 @@ resource "aws_security_group" "allow_jambonz_sbc_sip_rtp" {
cidr_blocks = ["0.0.0.0/0"]
}
ingress {
description = "sip tls for teams"
from_port = 5060
to_port = 5060
protocol = "udp"
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"]
}
ingress {
description = "sip from everywhere"
from_port = 5060

View File

@@ -137,6 +137,14 @@ resource "aws_security_group" "allow_jambonz_sbc_sip" {
cidr_blocks = ["0.0.0.0/0"]
}
ingress {
description = "sip tls for teams"
from_port = 5060
to_port = 5060
protocol = "udp"
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"]
}
ingress {
description = "http api"
from_port = 3000