add tracing tags toggle variable

This commit is contained in:
hezijie 2023-05-06 11:24:36 +08:00
Родитель 0bb971b451
Коммит eb39fb00b2
1 изменённых файлов: 14 добавлений и 0 удалений

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

@ -456,3 +456,17 @@ variable "zone" {
type = string
default = null
}
# tflint-ignore: terraform_unused_declarations
variable "tracing_tags_enabled" {
type = string
description = "Whether enable tracing tags that generated by BridgeCrew Yor."
default = false
}
# tflint-ignore: terraform_unused_declarations
variable "tracing_tags_prefix" {
type = string
description = "Default prefix for generated tracing tags"
default = "avm_"
}