From 559a43e0b97c5e81563ce98489bf00bcd54ca3f8 Mon Sep 17 00:00:00 2001 From: Kosy Anyanwu Date: Wed, 15 May 2024 13:23:51 +0200 Subject: [PATCH] Support Amazon Linux 2023 --- variables.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/variables.tf b/variables.tf index 37c0c9ed..f8bc0a6e 100644 --- a/variables.tf +++ b/variables.tf @@ -55,8 +55,8 @@ variable "distribution" { type = string description = "(Required) What is the OS distribution of the instance on which Terraoform Enterprise will be deployed?" validation { - condition = contains(["rhel", "ubuntu"], var.distribution) - error_message = "Supported values for distribution are 'rhel' or 'ubuntu'." + condition = contains(["rhel", "ubuntu", "amazon-linux-2023"], var.distribution) + error_message = "Supported values for distribution are 'rhel', 'ubuntu' or amazon-linux-2023." } }