Skip to content

Commit

Permalink
fix: allow nginx custom version
Browse files Browse the repository at this point in the history
  • Loading branch information
ArchiFleKs committed Aug 5, 2019
1 parent 9ce386d commit 61a5a89
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions terraform/modules/eks-addons/nginx-ingress.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
locals {
values_nginx_ingress_l4 = <<VALUES
controller:
image:
tag: ${var.nginx_ingress["version"]}
updateStrategy:
type: RollingUpdate
kind: "DaemonSet"
Expand All @@ -20,6 +22,8 @@ VALUES

values_nginx_ingress_nlb = <<VALUES
controller:
image:
tag: ${var.nginx_ingress["version"]}
updateStrategy:
type: RollingUpdate
kind: "DaemonSet"
Expand All @@ -39,6 +43,8 @@ VALUES

values_nginx_ingress_l7 = <<VALUES
controller:
image:
tag: ${var.nginx_ingress["version"]}
updateStrategy:
type: RollingUpdate
kind: "DaemonSet"
Expand Down

0 comments on commit 61a5a89

Please sign in to comment.