Skip to content

Commit

Permalink
fxing MR mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
zacharyblasczyk committed Dec 2, 2023
1 parent 416849a commit 1636f8a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions modules/app_eks/external_dns/external_dns.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ resource "helm_release" "external_dns" {
}

set {
name = "domainFilters[0]"
name = "domainFilters[0]"
value = var.fqdn
}

set {
name = "serviceAccount.annotations.eks\\.amazonaws\\.com/role-arn"
value = aws_iam_role.default.arn
}
}
}
2 changes: 1 addition & 1 deletion modules/app_eks/lb_controller/controller.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ resource "helm_release" "aws_load_balancer_controller" {
repository = "https://aws.github.io/eks-charts"
chart = "aws-load-balancer-controller"
namespace = "kube-system"
version = "1.6.1"
version = "1.6.2"

set {
name = "clusterName"
Expand Down
2 changes: 1 addition & 1 deletion modules/app_eks/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ output "autoscaling_group_names" {

output "node_role" {
value = aws_iam_role.node
}
}
1 change: 0 additions & 1 deletion outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,3 @@ output "url" {
value = local.url
description = "The URL to the W&B application"
}

0 comments on commit 1636f8a

Please sign in to comment.