We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 39649b9 + b4c83b1 commit 3425d90Copy full SHA for 3425d90
2 files changed
customer-managed/aws/terraform/providers.tf
@@ -16,4 +16,7 @@ provider "aws" {
16
default_tags {
17
tags = var.default_tags
18
}
19
+ ignore_tags {
20
+ key_prefixes = var.ignore_tags
21
+ }
22
customer-managed/aws/terraform/variables.tf
@@ -88,6 +88,14 @@ variable "default_tags" {
88
HELP
89
90
91
+variable "ignore_tags" {
92
+ type = list(string)
93
+ default = []
94
+ description = <<-HELP
95
+ List of tag keys that will be ignored during reconciliation of this terraform
96
+ HELP
97
+}
98
+
99
variable "enable_private_link" {
100
type = bool
101
default = false
0 commit comments