Skip to content

Commit

Permalink
Merge pull request #2 from behroozam/main
Browse files Browse the repository at this point in the history
Fix the issue with proxy identityTrustAnchorsPEM
  • Loading branch information
AymenSegni authored Jun 10, 2021
2 parents 02f941c + a231019 commit c37c2fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions install.tf
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,15 @@ resource "helm_release" "linkerd_ha" {
}
}

// Disable HA Mode
// Disable HA Mode

resource "helm_release" "linkerd_dev" {
count = var.enable_linkerd_ha == false ? 1 : 0
name = "linkerd"
repository = "https://helm.linkerd.io/stable"
chart = "linkerd2"
set_sensitive {
name = "global.identityTrustAnchorsPEM"
name = "identityTrustAnchorsPEM"
value = tls_self_signed_cert.trustanchor_cert.cert_pem
}

Expand Down

0 comments on commit c37c2fe

Please sign in to comment.