-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Remove dependencies that caused redundant updates * Rename aws_alb_ingress to aws_lb_ingress as per official name change * Markdown linter changing the standard * Updating terraform-aws-modules/eks/aws to 13.2.0 * Working version of ALB * Fix compatibility with several DNS zones * Downgrade terraform-aws-modules/eks/aws to 13.1.0 due to Fargate issues * Get LB Ingress controller to a working state Co-authored-by: thibault-lepeu <[email protected]>
- Loading branch information
1 parent
4af4038
commit c8cdc25
Showing
17 changed files
with
627 additions
and
358 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
module "aws_lb_ingress_controller" { | ||
count = var.aws_lb_ingress_enabled ? 1 : 0 | ||
source = "./services/aws_lb_ingress_controller" | ||
|
||
chart_version = var.aws_lb_ingress_chart_version | ||
app_version = var.aws_lb_ingress_app_version | ||
cluster_id = module.eks_cluster.cluster_id | ||
oidc_provider_arn = module.eks_cluster.oidc_provider_arn | ||
cluster_oidc_issuer_url = module.eks_cluster.cluster_oidc_issuer_url | ||
kubeconfig_filename = module.eks_cluster.kubeconfig_filename | ||
|
||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.