init
This commit is contained in:
16
aws_runner/sg.tf
Normal file
16
aws_runner/sg.tf
Normal 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"]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user