Skip to content

Commit

Permalink
fix(examples): var descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
dudymas committed Sep 26, 2024
1 parent afdabb0 commit cdb4e21
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions examples/complete/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit cdb4e21

Please sign in to comment.