Skip to content
This repository has been archived by the owner on Oct 7, 2024. It is now read-only.

Commit

Permalink
correct variable type and set nullable to false
Browse files Browse the repository at this point in the history
  • Loading branch information
lonegunmanb committed May 7, 2023
1 parent 7acdadb commit d0f6422
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -137,14 +137,16 @@ variable "sku_name" {

# 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
variable "tracing_tags_prefix" {
type = string
description = "Default prefix for generated tracing tags"
default = "avm_"
nullable = false
}

0 comments on commit d0f6422

Please sign in to comment.