Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save guillermo-musumeci/6d8d14541f17b78913a73835c48790f5 to your computer and use it in GitHub Desktop.
Variable Validation in Terraform
variable "vm_size" {
type = string
description = "VM instance size"
validation {
condition = contains(["Standard_DS3_v2", "Standard_D2s_v4", "Standard_D4s_v4", "Standard_D8s_v4"], var.vm_size)
error_message = "Invalid VM instance size provided"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment