Skip to content

Commit

Permalink
Updated nginx
Browse files Browse the repository at this point in the history
  • Loading branch information
monachawla17 committed Dec 13, 2024
1 parent baba102 commit 33a49c2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/complete/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ module "eks-addons" {
k8s_dashboard_ingress_load_balancer = "nlb" ##Choose your load balancer type (e.g., NLB or ALB). Enable load balancer controller, if you require ALB, Enable Ingress Nginx if NLB.
private_alb_enabled = false # to enable Internal (Private) ALB , set this and aws_load_balancer_controller_enabled "true" together
alb_acm_certificate_arn = "" # If using ALB in above parameter, ensure you provide the ACM certificate ARN for SSL.
ingress_class_name = "nginx"
ingress_class_name = "nginx" # enter ingress class name according to your requirement (example: "nginx", "internal-ingress")
k8s_dashboard_hostname = "k8s-dashboard.rnd.squareops.in" # Enter Hostname
}

Expand Down
4 changes: 2 additions & 2 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ variable "kubernetes_dashboard_config" {
alb_acm_certificate_arn = ""
k8s_dashboard_hostname = ""
private_alb_enabled = false
ingress_class_name = "nginx"
ingress_class_name = ""
}
}

Expand Down Expand Up @@ -544,7 +544,7 @@ variable "argocd_config" {
argocd_ingress_load_balancer = "nlb"
private_alb_enabled = false
alb_acm_certificate_arn = ""
ingress_class_name = "nginx"
ingress_class_name = ""
namespace = "argocd"
}
}
Expand Down

0 comments on commit 33a49c2

Please sign in to comment.