terraform: allows cluster name length of 10 characters on AWS (#2110)

This commit is contained in:
Malte Poll 2023-07-17 17:45:41 +02:00 committed by GitHub
parent ac1128d07f
commit 5cbdb3a519
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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"
}
}