Skip to content

Commit 7c3681e

Browse files
committed
fix(runners): correct variable name in create_tag policy for consistency
1 parent d74250e commit 7c3681e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/runners/policies-runner.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ resource "aws_iam_role_policy" "create_tag" {
6161
name = "runner-create-tags"
6262
role = aws_iam_role.runner.name
6363
policy = templatefile("${path.module}/policies/instance-create-tags-policy.json", {
64-
ec2_custom_allowed_tags = var.ec2_custom_allowed_tags_creation
64+
ec2_custom_allowed_tags_creation = var.ec2_custom_allowed_tags_creation
6565
})
6666
}
6767

0 commit comments

Comments
 (0)