Skip to content

Commit

Permalink
v0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
jensheerin committed Aug 13, 2024
1 parent a0fb986 commit 854c984
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .terraform-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.4
0.1.5
4 changes: 2 additions & 2 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ variable "virtual_desktop_application_group_name" {
nullable = false

validation {
condition = can(regex("^[a-z0-9-]{3,24}$", var.virtual_desktop_application_group_name))
error_message = "The name must be between 3 and 24 characters long and can only contain lowercase letters, numbers and dashes."
condition = can(regex("^[a-z0-9-]{3,64}$", var.virtual_desktop_application_group_name))
error_message = "The name must be between 3 and 64 characters long and can only contain Alphanumerics, underscores, periods, and hyphens. Start with letter or number. End with letter, number, or underscore."
}
}

Expand Down

0 comments on commit 854c984

Please sign in to comment.