Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/crazy-canux/terraform-gcp-ingress-nginx
https://github.com/crazy-canux/terraform-gcp-ingress-nginx
gcp gke ingress ingress-nginx kubernetes nginx terraform
Last synced: 8 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/crazy-canux/terraform-gcp-ingress-nginx
- Owner: crazy-canux
- Created: 2023-10-09T05:46:52.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-09T05:48:28.000Z (about 1 year ago)
- Last Synced: 2024-11-13T17:51:22.615Z (about 2 months ago)
- Topics: gcp, gke, ingress, ingress-nginx, kubernetes, nginx, terraform
- Language: HCL
- Homepage:
- Size: 11.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# terraform ingress nginx controller
deploy ingress-nginx controller.
## Synopsis
provider
provider "google" {
project = local.project
region = local.region
}provider "helm" {
kubernetes {
host = "https://${data.google_container_cluster.this.endpoint}"
cluster_ca_certificate = base64decode(data.google_container_cluster.this.master_auth[0].cluster_ca_certificate)
token = data.google_client_config.this.access_token
}
}provider "kubernetes" {
host = "https://${data.google_container_cluster.this.endpoint}"
cluster_ca_certificate = base64decode(data.google_container_cluster.this.master_auth[0].cluster_ca_certificate)
token = data.google_client_config.this.access_token
}module
module "ingress_nginx" {
source = "../../terraform-ingress-nginx"
namespace = local.namespace
}