Skip to content

Instantly share code, notes, and snippets.

@guillermo-musumeci
Created October 6, 2022 20:53
Show Gist options
  • Select an option

  • Save guillermo-musumeci/4b73b43f642f11a371af2117fadc781e to your computer and use it in GitHub Desktop.

Select an option

Save guillermo-musumeci/4b73b43f642f11a371af2117fadc781e to your computer and use it in GitHub Desktop.
Variable Validation in Terraform
variable "app_name" {
type = string
description = "Application name in lower case"
validation {
condition = lower(var.app_name) == var.app_name
error_message = "Application name value must be in all lower case"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment