This commit is contained in:
2026-02-18 01:05:05 +01:00
commit 490fad15c6
19 changed files with 558 additions and 0 deletions

16
aws_runner/sg.tf Normal file
View File

@@ -0,0 +1,16 @@
resource "aws_security_group" "github_runner_sg" {
name = "github-runner-sg"
description = "Security group for GitHub self-hosted runners"
ingress {
from_port = 22
to_port = 22
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"]
}
}