Mediamtx + repertory instance

This commit is contained in:
Ian Keane 2026-09-14 13:37:00 -04:00
parent 39420f524b
commit a0b28b7a01
13 changed files with 470 additions and 2 deletions

View file

@ -43,6 +43,22 @@ resource "aws_security_group" "talos" {
self = true
}
ingress {
description = "MediaMTX RTMP ingest"
from_port = 1935
to_port = 1935
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
}
ingress {
description = "MediaMTX WebRTC ICE"
from_port = 8189
to_port = 8189
protocol = "udp"
cidr_blocks = ["0.0.0.0/0"]
}
egress {
from_port = 0
to_port = 0