12 lines
401 B
HCL
12 lines
401 B
HCL
module "filter-tags" {
|
|
source = "../../../common/filter-tags"
|
|
|
|
environment = var.environment
|
|
resource = "azure_storage"
|
|
filter_tags_use_defaults = var.filter_tags_use_defaults
|
|
filter_tags_custom = var.filter_tags_custom
|
|
filter_tags_custom_excluded = var.filter_tags_custom_excluded
|
|
extra_tags = ["transaction_type:all"]
|
|
}
|
|
|