We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 611fa17 commit 338639aCopy full SHA for 338639a
main.tf
@@ -9,7 +9,7 @@ locals {
9
}
10
11
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
+ runner_labels = (var.runner_disable_default_labels == false) ? sort(concat(local.default_runner_labels, var.runner_extra_labels)) : var.runner_extra_labels
13
14
ssm_root_path = var.ssm_paths.use_prefix ? "/${var.ssm_paths.root}/${var.prefix}" : "/${var.ssm_paths.root}"
15
0 commit comments