mirror of
https://github.com/jambonz/jambonz-infrastructure.git
synced 2026-01-25 02:08:27 +00:00
bugfix: feature server sg allows sns notification
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user