From ae2cc6c9b2e4b46f18fdbdafc6a275099a229a77 Mon Sep 17 00:00:00 2001 From: Kai Lueke Date: Mon, 29 Apr 2024 22:08:03 +0900 Subject: [PATCH] brightbox: Fix Terraform 14 incompatibility --- brightbox/variables.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/brightbox/variables.tf b/brightbox/variables.tf index ae565a0..4af3b7a 100644 --- a/brightbox/variables.tf +++ b/brightbox/variables.tf @@ -11,7 +11,7 @@ variable "release_channel" { validation { condition = contains(["lts", "stable", "beta", "alpha"], var.release_channel) - error_message = "release_channel must be lts, stable, beta, or alpha." + error_message = "The variable 'release_channel' must be lts, stable, beta, or alpha." } }