Commit 9ab888a4 authored by David Pestana's avatar David Pestana

add production cluster issuer for cert-manager

parent 267203b0
resource "kubectl_manifest" "letsencrypt-produccion-cluster-issuer" {
yaml_body = <<YAML
apiVersion: cert-manager.io/v1
kind: ClusterIssuer
metadata:
name: letsencrypt-production
spec:
acme:
email: info@wedoops.io
server: https://acme-v02.api.letsencrypt.org/directory
privateKeySecretRef:
name: letsencrypt-production
solvers:
- http01:
ingress:
class: nginx
YAML
}
\ No newline at end of file
......@@ -39,7 +39,7 @@ locals {
namespace = "cert-manager"
chart = "cert-manager"
repository = "https://charts.jetstack.io"
version = "1.2.0"
version = "1.5.4"
max_history = 3,
values = {
file = [],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment