Skip to content

Commit

Permalink
AWS LB ingress controller 2.0
Browse files Browse the repository at this point in the history
* 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
xposix and thibault-lepeu authored Nov 19, 2020
1 parent 4af4038 commit c8cdc25
Show file tree
Hide file tree
Showing 17 changed files with 627 additions and 358 deletions.
89 changes: 43 additions & 46 deletions README.md

Large diffs are not rendered by default.

140 changes: 70 additions & 70 deletions README0.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion eks.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module "eks_cluster" {
source = "terraform-aws-modules/eks/aws"
version = "13.0.0"
version = "13.1.0"

cluster_name = var.cluster_name
cluster_version = var.cluster_version
Expand Down
11 changes: 0 additions & 11 deletions service_aws_alb_ingress.tf

This file was deleted.

12 changes: 12 additions & 0 deletions service_aws_lb_ingress.tf
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

}
38 changes: 0 additions & 38 deletions services/aws_alb_ingress_controller/helm.tf

This file was deleted.

170 changes: 0 additions & 170 deletions services/aws_alb_ingress_controller/iam.tf

This file was deleted.

Loading

0 comments on commit c8cdc25

Please sign in to comment.