bugfix: feature server sg allows sns notification

This commit is contained in:
Dave Horton
2020-04-21 11:23:31 -04:00
parent c8633b61ea
commit 4ed8c6c00e

View File

@@ -189,13 +189,21 @@ resource "aws_security_group" "allow_jambonz_feature_server" {
}
ingress {
description = "http"
description = "http from sbc/api servers"
from_port = 3000
to_port = 3000
protocol = "tcp"
cidr_blocks = [aws_vpc.jambonz.cidr_block]
}
ingress {
description = "http from aws sns"
from_port = 3001
to_port = 3001
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
}
ingress {
description = "sip from VPC"
from_port = 5060