Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/crazy-canux/terraform-aws-lbv2
aws-load-balancer-controller
https://github.com/crazy-canux/terraform-aws-lbv2
aws aws-load-balancer-controller kubernetes load-balancer terraform
Last synced: 2 days ago
JSON representation
aws-load-balancer-controller
- Host: GitHub
- URL: https://github.com/crazy-canux/terraform-aws-lbv2
- Owner: crazy-canux
- Created: 2022-07-07T08:51:10.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-08-08T03:33:58.000Z (over 1 year ago)
- Last Synced: 2024-04-16T04:22:52.270Z (7 months ago)
- Topics: aws, aws-load-balancer-controller, kubernetes, load-balancer, terraform
- Language: HCL
- Homepage:
- Size: 12.7 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# terraform-aws-lb
provision aws-load-balancer-controller with terraform.
## HowTo
module "lbv2" {
source = "crazy-canux/lbv2/aws"
version = "0.1.0"
namespace = local.namespace
service_account = local.service_account
cluster_name = local.cluster
oidc_issuer = local.cluster_oidc_issuer_url
helm_values = ["${file("${path.module}/helm-values.yaml")}"]
depends_on = [data.terraform_remote_state.eks]
}