Skip to content

Commit

Permalink
fix: set max length on label to meet validation rule
Browse files Browse the repository at this point in the history
expected length of name_prefix to be in the range (1 - 38)
  • Loading branch information
agfunderburg10 committed Aug 16, 2024
1 parent a292a85 commit 7513671
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,10 @@ module "github_runner_label" {
source = "cloudposse/label/null"
version = "0.25.0"

enabled = local.enabled
name = local.name
context = module.this.context
enabled = local.enabled
name = local.name
context = module.this.context
id_length_limit = 24
}

# only appliable if name variable was not set
Expand Down

0 comments on commit 7513671

Please sign in to comment.