From 150c12d7c48f380cee2c981092165a39de2618a8 Mon Sep 17 00:00:00 2001 From: lonegunmanb Date: Mon, 8 May 2023 00:51:48 +0000 Subject: [PATCH] correct variable's type, set nullable to false --- variables.tf | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/variables.tf b/variables.tf index 0396bd0..df839c2 100644 --- a/variables.tf +++ b/variables.tf @@ -459,9 +459,10 @@ variable "zone" { # tflint-ignore: terraform_unused_declarations variable "tracing_tags_enabled" { - type = string + type = bool description = "Whether enable tracing tags that generated by BridgeCrew Yor." default = false + nullable = false } # tflint-ignore: terraform_unused_declarations @@ -469,4 +470,5 @@ variable "tracing_tags_prefix" { type = string description = "Default prefix for generated tracing tags" default = "avm_" + nullable = false } \ No newline at end of file