Skip to content

Commit a37c0d7

Browse files
committed
fix(argocd): simplify lifecycle ignore_changes path for cluster resources
1 parent 34ea631 commit a37c0d7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cluster.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ resource "argocd_cluster" "dev" {
44

55
lifecycle {
66
ignore_changes = [
7-
config.0.tls_client_config.0.ca_data
7+
config
88
]
99
}
1010

@@ -37,7 +37,7 @@ resource "argocd_cluster" "prod" {
3737
name = "prod"
3838
lifecycle {
3939
ignore_changes = [
40-
config.0.tls_client_config.0.ca_data
40+
config
4141
]
4242
}
4343

@@ -71,7 +71,7 @@ resource "argocd_cluster" "ops" {
7171

7272
lifecycle {
7373
ignore_changes = [
74-
config.0.tls_client_config.0.ca_data
74+
config
7575
]
7676
}
7777

0 commit comments

Comments
 (0)