Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
Signed-off-by: Yevgen Karlashov <[email protected]>
  • Loading branch information
ikarlashov committed Jan 10, 2025
1 parent dc96e87 commit 7eceec7
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions docker_autoscaler.tf
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@ resource "aws_vpc_security_group_ingress_rule" "docker_autoscaler" {
resource "aws_vpc_security_group_ingress_rule" "autoscaler_ingress" {
count = var.runner_worker.type == "docker-autoscaler" ? 1 : 0

security_group_id = aws_security_group.docker_autoscaler[0].id
from_port = 0
to_port = 0
ip_protocol = "-1"
description = "Allow ALL Ingress traffic between Runner Manager and Docker-autoscaler workers security group"
security_group_id = aws_security_group.docker_autoscaler[0].id
from_port = 0
to_port = 0
ip_protocol = "-1"
description = "Allow ALL Ingress traffic between Runner Manager and Docker-autoscaler workers security group"
referenced_security_group_id = aws_security_group.runner.id
}

Expand Down
10 changes: 5 additions & 5 deletions security_groups.tf
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ resource "aws_security_group" "runner" {
resource "aws_vpc_security_group_egress_rule" "runner_manager_to_docker_autoscaler_egress" {
count = var.runner_worker.type == "docker-autoscaler" ? 1 : 0

security_group_id = aws_security_group.runner.id
from_port = 0
to_port = 0
ip_protocol = "-1"
description = "Allow ALL Egress traffic between Runner Manager and Docker-autoscaler workers security group"
security_group_id = aws_security_group.runner.id
from_port = 0
to_port = 0
ip_protocol = "-1"
description = "Allow ALL Egress traffic between Runner Manager and Docker-autoscaler workers security group"
referenced_security_group_id = aws_security_group.docker_autoscaler[0].id
}

Expand Down

0 comments on commit 7eceec7

Please sign in to comment.