Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(horde): allow inbound access to horde agents on ports 7000-7010 from other horde agents #353

Merged
merged 1 commit into from
Oct 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions modules/unreal/horde/sg.tf
Original file line number Diff line number Diff line change
Expand Up @@ -220,3 +220,14 @@ resource "aws_vpc_security_group_ingress_rule" "unreal_horde_service_inbound_age
to_port = 443
ip_protocol = "tcp"
}

# Horde agents allow inbound access from other agents
resource "aws_vpc_security_group_ingress_rule" "unreal_horde_agents_inbound_agents" {
count = length(var.agents) > 0 ? 1 : 0
security_group_id = aws_security_group.unreal_horde_agent_sg[0].id
description = "Allow inbound traffic to Horde Agents from other Horde Agents."
referenced_security_group_id = aws_security_group.unreal_horde_agent_sg[0].id
from_port = 7000
to_port = 7010
ip_protocol = "tcp"
}
Loading