Skip to content

Commit 2a947e8

Browse files
authored
fix: do not create security group rules for docker+machine if docker-autoscaler selected (#1243)
## Description The `runner_worker_ingress_rules` and `runner_worker_egress_rules` have to be attached to the correct security group. At the moment the module always attaches the rules to the docker machine security group which does not exist when `docker-autoscaler` is used.
1 parent d15a81a commit 2a947e8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docker_machine_security_group.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ resource "aws_security_group" "docker_machine" {
2121
}
2222

2323
resource "aws_vpc_security_group_ingress_rule" "docker_machine" {
24-
for_each = var.runner_worker_ingress_rules
24+
for_each = var.runner_worker.type == "docker+machine" ? var.runner_worker_ingress_rules : {}
2525

2626
security_group_id = aws_security_group.docker_machine[0].id
2727

@@ -39,7 +39,7 @@ resource "aws_vpc_security_group_ingress_rule" "docker_machine" {
3939
}
4040

4141
resource "aws_vpc_security_group_egress_rule" "docker_machine" {
42-
for_each = var.runner_worker_egress_rules
42+
for_each = var.runner_worker.type == "docker+machine" ? var.runner_worker_egress_rules : {}
4343

4444
security_group_id = aws_security_group.docker_machine[0].id
4545

0 commit comments

Comments
 (0)