Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/crazy-canux/terraform-aws-ingress-nginx
https://github.com/crazy-canux/terraform-aws-ingress-nginx
aws ingress ingress-nginx kubernetes nginx terraform
Last synced: 2 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/crazy-canux/terraform-aws-ingress-nginx
- Owner: crazy-canux
- Created: 2022-07-06T04:49:37.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-07-18T03:28:51.000Z (over 2 years ago)
- Last Synced: 2024-04-16T04:22:52.248Z (7 months ago)
- Topics: aws, ingress, ingress-nginx, kubernetes, nginx, terraform
- Language: HCL
- Homepage:
- Size: 1.95 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# terraform-ingress-nginx
## HowTo
module "ingress_nginx" {
source = "crazy-canux/nginx/ingress"
version = "0.1.0"
namespace_name = local.namespace
helm_values = ["${file("${path.module}/helm-values.yaml")}"]
depends_on = [data.terraform_remote_state.eks]
extra_set_values = [
{
name = "serviceAccount.name"
value = local.service_account
type = "string"
}
]
}