Skip to content

Commit c37c2fe

Browse files
authored
Merge pull request #2 from behroozam/main
Fix the issue with proxy identityTrustAnchorsPEM
2 parents 02f941c + a231019 commit c37c2fe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

install.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,15 @@ resource "helm_release" "linkerd_ha" {
2929
}
3030
}
3131

32-
// Disable HA Mode
32+
// Disable HA Mode
3333

3434
resource "helm_release" "linkerd_dev" {
3535
count = var.enable_linkerd_ha == false ? 1 : 0
3636
name = "linkerd"
3737
repository = "https://helm.linkerd.io/stable"
3838
chart = "linkerd2"
3939
set_sensitive {
40-
name = "global.identityTrustAnchorsPEM"
40+
name = "identityTrustAnchorsPEM"
4141
value = tls_self_signed_cert.trustanchor_cert.cert_pem
4242
}
4343

0 commit comments

Comments
 (0)