Skip to content

Commit

Permalink
BIOAN-8 #comment bugfix removing dev path from ingress module
Browse files Browse the repository at this point in the history
  • Loading branch information
jerowe committed Dec 9, 2021
1 parent 2403152 commit 76910fe
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -230,10 +230,9 @@ resource "helm_release" "cert-manager" {
}

module "helm_ingress" {
count = var.enable_ssl == true && var.install_ingress ? 1 : 0
# source = "dabble-of-devops-bioanalyze/eks-bitnami-nginx-ingress/aws"
# version = ">= 0.1.0"
source = "/root/terraform-recipes/terraform-aws-eks-bitnami-nginx-ingress"
count = var.enable_ssl == true && var.install_ingress ? 1 : 0
source = "dabble-of-devops-bioanalyze/eks-bitnami-nginx-ingress/aws"
version = ">= 0.2.0"
letsencrypt_email = var.letsencrypt_email
# helm_release_values_dir = var.helm_release_values_dir
helm_release_name = "nginx-ingress"
Expand Down

0 comments on commit 76910fe

Please sign in to comment.