mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-08-08 15:02:18 -04:00
cli: fix invalid upper case name on AWS (#2546)
This commit is contained in:
parent
d67f1a035f
commit
eaec73cca4
4 changed files with 21 additions and 3 deletions
|
@ -5,6 +5,10 @@ variable "name" {
|
|||
condition = length(var.name) <= 10
|
||||
error_message = "The length of the name of the Constellation must be <= 10 characters"
|
||||
}
|
||||
validation {
|
||||
condition = var.name == lower(var.name)
|
||||
error_message = "The name of the Constellation must be in lowercase"
|
||||
}
|
||||
}
|
||||
|
||||
variable "node_groups" {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue