Skip to content

Commit

Permalink
Support Amazon Linux 2023
Browse files Browse the repository at this point in the history
  • Loading branch information
kosyfrances committed May 15, 2024
1 parent 8142d5f commit 559a43e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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."
}
}

Expand Down

0 comments on commit 559a43e

Please sign in to comment.