Skip to content

Commit 338639a

Browse files
Update main.tf
Co-authored-by: Niek Palm <[email protected]>
1 parent 611fa17 commit 338639a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ locals {
99
}
1010

1111
default_runner_labels = distinct(concat(["self-hosted", var.runner_os, var.runner_architecture]))
12-
runner_labels = (var.runner_disable_default_labels == false) ? concat(local.default_runner_labels, var.runner_extra_labels) : var.runner_extra_labels
12+
runner_labels = (var.runner_disable_default_labels == false) ? sort(concat(local.default_runner_labels, var.runner_extra_labels)) : var.runner_extra_labels
1313

1414
ssm_root_path = var.ssm_paths.use_prefix ? "/${var.ssm_paths.root}/${var.prefix}" : "/${var.ssm_paths.root}"
1515
}

0 commit comments

Comments
 (0)