mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-02-23 08:20:15 -05: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
|
type = string
|
||||||
description = "Name of your Constellation"
|
description = "Name of your Constellation"
|
||||||
validation {
|
validation {
|
||||||
condition = length(var.name) < 10
|
condition = length(var.name) <= 10
|
||||||
error_message = "The name of the Constellation must be shorter than 10 characters"
|
error_message = "The length of the name of the Constellation must be <= 10 characters"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user