Skip to content

Commit 7513671

Browse files
fix: set max length on label to meet validation rule
expected length of name_prefix to be in the range (1 - 38)
1 parent a292a85 commit 7513671

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

main.tf

+4-3
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,10 @@ module "github_runner_label" {
2626
source = "cloudposse/label/null"
2727
version = "0.25.0"
2828

29-
enabled = local.enabled
30-
name = local.name
31-
context = module.this.context
29+
enabled = local.enabled
30+
name = local.name
31+
context = module.this.context
32+
id_length_limit = 24
3233
}
3334

3435
# only appliable if name variable was not set

0 commit comments

Comments
 (0)