Skip to content

Instantly share code, notes, and snippets.

@httpdss
Created September 1, 2022 13:46
Show Gist options
  • Save httpdss/a017af45b13e1a26777bb6889b42244f to your computer and use it in GitHub Desktop.
Save httpdss/a017af45b13e1a26777bb6889b42244f to your computer and use it in GitHub Desktop.
helm-terraform-sample
resource "helm_release" "cert_manager" {
name = "cert-manager"
namespace = kubernetes_namespace.ingress.id
#repository = data.helm_repository.jetstack.name
chart = "jetstack/cert-manager"
version = "v1.1.0"
values = [file("${path.module}/cert-manager.yaml")]
set {
name = "podAnnotations.iam\\.amazonaws\\.com/role"
value = aws_iam_role.route_53_management_role.arn
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment