Skip to content

Commit

Permalink
Merge pull request #104 from kloia/fix-eks-addon
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmetayd authored Oct 17, 2023
2 parents c0ecec3 + 5a63017 commit 8e00389
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions aws-eks-addons/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ resource "helm_release" "aws_lb_controller" {
repository = "https://aws.github.io/eks-charts"
chart = "aws-load-balancer-controller"
namespace = "kube-system"
version = "1.6.1"
depends_on = [
kubernetes_service_account.service-account
]
Expand Down
2 changes: 1 addition & 1 deletion aws-eks-addons/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ variable "deploy_rancher_istio" {
variable "connect_hostnames_from_alb_ing_prefix" {
description = "Prefix to give ingress names when connecting alb hostnames"
type = string
default = "ing-{servicename}"
default = "ing-servicename"
}

variable "connect_hostnames_from_alb_to_nginx" {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -651,6 +651,7 @@ data "aws_iam_policy_document" "load_balancer_controller" {
"elasticloadbalancing:DescribeTargetGroupAttributes",
"elasticloadbalancing:DescribeTargetHealth",
"elasticloadbalancing:DescribeTags",
"elasticloadbalancing:AddTags",
]
resources = ["*"]
}
Expand Down

0 comments on commit 8e00389

Please sign in to comment.