We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75063fe commit fe7cb94Copy full SHA for fe7cb94
code/infra/variables.tf
@@ -39,11 +39,11 @@ variable "function_container_image" {
39
type = string
40
sensitive = false
41
validation {
42
- condition = alltrue(
+ condition = alltrue([
43
length(var.function_container_image) > 2,
44
length(split("/", var.function_container_image)) > 2,
45
length(split(":", var.function_container_image)) > 2,
46
- )
+ ])
47
error_message = "Please specify a valid container image reference."
48
}
49
0 commit comments