Skip to content

Commit

Permalink
Merge pull request #10 from lutz108/main
Browse files Browse the repository at this point in the history
Update variables.tf
  • Loading branch information
PacoVK authored Mar 14, 2024
2 parents b27ab92 + d388658 commit ba648e0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ variable "application_name" {
variable "functionbeat_version" {
description = "Funtionbeat version to deploy"
type = string
validation {
condition = tonumber(split(".", var.functionbeat_version)[0]) >= 8 && tonumber(split(".", var.functionbeat_version)[1]) >= 12 && tonumber(split(".", var.functionbeat_version)[2]) >= 1
error_message = "The functionbeat_version must be at least '8.12.1' to be able to use the provided.al2 aws lambda runtime."
}
}

variable "lambda_config" {
Expand Down

0 comments on commit ba648e0

Please sign in to comment.