mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-05-03 14:54:53 -04:00
terraform: allows cluster name length of 10 characters on AWS (#2110)
This commit is contained in:
parent
ac1128d07f
commit
5cbdb3a519
1 changed files with 2 additions and 2 deletions
|
@ -2,8 +2,8 @@ variable "name" {
|
|||
type = string
|
||||
description = "Name of your Constellation"
|
||||
validation {
|
||||
condition = length(var.name) < 10
|
||||
error_message = "The name of the Constellation must be shorter than 10 characters"
|
||||
condition = length(var.name) <= 10
|
||||
error_message = "The length of the name of the Constellation must be <= 10 characters"
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue