correct variable's type, set nullable to false

This commit is contained in:
lonegunmanb 2023-05-08 00:51:48 +00:00
Родитель 37943ff5e0
Коммит 150c12d7c4
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -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
}