From cdb4e213f37768696f25a31fb5d01cd01771bdbc Mon Sep 17 00:00:00 2001 From: Jeremy White Date: Thu, 26 Sep 2024 13:25:40 -0400 Subject: [PATCH] fix(examples): var descriptions --- examples/complete/variables.tf | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/examples/complete/variables.tf b/examples/complete/variables.tf index 6d93f69..b28b23c 100644 --- a/examples/complete/variables.tf +++ b/examples/complete/variables.tf @@ -4,8 +4,9 @@ variable "region" { } variable "logging_level" { - type = string - default = "INFO" + type = string + description = "The logging level of the API. One of - OFF, INFO, ERROR" + default = "INFO" validation { condition = contains(["OFF", "INFO", "ERROR"], var.logging_level)