mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
terraform: allows cluster name length of 10 characters on AWS (#2110)
This commit is contained in:
parent
ac1128d07f
commit
5cbdb3a519
@ -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…
Reference in New Issue
Block a user