mirror of
https://github.com/livekit/livekit.git
synced 2026-03-31 19:45:43 +00:00
112 lines
2.2 KiB
HCL
112 lines
2.2 KiB
HCL
data "aws_vpc" "main" {
|
|
id = var.vpc_id
|
|
}
|
|
|
|
resource "aws_security_group" "main" {
|
|
name = "livekit-${var.name}"
|
|
description = "Allow LiveKit inbound TCP and UDP traffic"
|
|
vpc_id = data.aws_vpc.main.id
|
|
|
|
ingress {
|
|
description = "UDP port range for ICE"
|
|
from_port = var.udp_port_start
|
|
to_port = var.udp_port_end
|
|
protocol = "udp"
|
|
cidr_blocks = ["0.0.0.0/0"]
|
|
}
|
|
|
|
ingress {
|
|
description = "UDP port for ICE"
|
|
from_port = var.rtc_udp_port
|
|
to_port = var.rtc_udp_port
|
|
protocol = "udp"
|
|
cidr_blocks = ["0.0.0.0/0"]
|
|
}
|
|
|
|
ingress {
|
|
description = "TCP port for ICE"
|
|
from_port = var.rtc_tcp_port
|
|
to_port = var.rtc_tcp_port
|
|
protocol = "tcp"
|
|
cidr_blocks = ["0.0.0.0/0"]
|
|
}
|
|
|
|
ingress {
|
|
description = "UDP port for TURN"
|
|
from_port = var.turn_port_start
|
|
to_port = var.turn_port_end
|
|
protocol = "udp"
|
|
cidr_blocks = ["0.0.0.0/0"]
|
|
}
|
|
|
|
// for TURN server
|
|
ingress {
|
|
description = "TURN TCP"
|
|
from_port = var.turn_tcp_port
|
|
to_port = var.turn_tcp_port
|
|
protocol = "tcp"
|
|
cidr_blocks = ["0.0.0.0/0"]
|
|
}
|
|
|
|
// for TURN server
|
|
ingress {
|
|
description = "TURN UDP"
|
|
from_port = var.turn_udp_port
|
|
to_port = var.turn_udp_port
|
|
protocol = "udp"
|
|
cidr_blocks = ["0.0.0.0/0"]
|
|
}
|
|
|
|
ingress {
|
|
description = "internal traffic"
|
|
from_port = 0
|
|
to_port = 0
|
|
protocol = "-1"
|
|
cidr_blocks = [data.aws_vpc.main.cidr_block]
|
|
}
|
|
|
|
egress {
|
|
from_port = 0
|
|
to_port = 0
|
|
protocol = "-1"
|
|
cidr_blocks = ["0.0.0.0/0"]
|
|
}
|
|
|
|
tags = {
|
|
Name = "livekit"
|
|
}
|
|
}
|
|
|
|
resource "aws_security_group" "lb" {
|
|
name = "livekit-${var.name}-lb"
|
|
description = "Load balancer traffic"
|
|
vpc_id = data.aws_vpc.main.id
|
|
|
|
ingress {
|
|
description = "HTTP"
|
|
from_port = 80
|
|
to_port = 80
|
|
protocol = "tcp"
|
|
cidr_blocks = ["0.0.0.0/0"]
|
|
}
|
|
|
|
ingress {
|
|
description = "HTTPS"
|
|
from_port = 443
|
|
to_port = 443
|
|
protocol = "tcp"
|
|
cidr_blocks = ["0.0.0.0/0"]
|
|
}
|
|
|
|
egress {
|
|
from_port = 0
|
|
to_port = 0
|
|
protocol = "-1"
|
|
cidr_blocks = ["0.0.0.0/0"]
|
|
}
|
|
|
|
tags = {
|
|
Name = "livekit"
|
|
}
|
|
}
|