Skip to content

Commit

Permalink
Modify certificate
Browse files Browse the repository at this point in the history
  • Loading branch information
brettcurtis committed Sep 28, 2024
1 parent e98d63e commit de35e8d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion regional/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -468,14 +468,18 @@ resource "kubernetes_manifest" "istio_gateway_tls" {
spec = {
commonName = "istio.osinfra.io"
dnsNames = ["*"]
duration = "2160h"
isCA = false

issuerRef = {
name = "istio-ca"
kind = "Issuer"
group = "cert-manager.io"
}

secretName = "istio-gateway-tls"
renewBefore = "360h"
secretName = "istio-gateway-tls"
usages = ["server auth"]
}
}
}
Expand Down

0 comments on commit de35e8d

Please sign in to comment.