Skip to content

Commit

Permalink
Merge pull request #19 from soat-fiap/remove_load_balancer
Browse files Browse the repository at this point in the history
remove load balancer from pipeline
  • Loading branch information
italopessoa authored Sep 18, 2024
2 parents 062f559 + 811c21e commit 09d8927
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ module "eks" {
private_subnets = module.vpc.private_subnets
}

module "loadbalancer-controller" {
depends_on = [module.eks]
source = "./modules/loadbalancer-controller"
oidc_provider_arn = module.eks.oidc_provider_arn
name = var.nlb_name
cluster_name = module.eks.cluster_name
region = var.region
vpc_id = module.vpc.vpc_id
}
# module "loadbalancer-controller" {
# depends_on = [module.eks]
# source = "./modules/loadbalancer-controller"
# oidc_provider_arn = module.eks.oidc_provider_arn
# name = var.nlb_name
# cluster_name = module.eks.cluster_name
# region = var.region
# vpc_id = module.vpc.vpc_id
# }

0 comments on commit 09d8927

Please sign in to comment.