Skip to content

Latest commit

 

History

History
28 lines (24 loc) · 546 Bytes

README.md

File metadata and controls

28 lines (24 loc) · 546 Bytes

terraform-gateway-module

A Terraform module that creates a GKE Gateway API resource using SSL certificates (usually by Cloudflare).

Usage

module "gateway" {
  source = "..."

  gke_host                   = "..."
  gke_token                  = "..."
  gke_cluster_ca_certificate = "..."
  gateway_certificates = [
    {
      domain      = "alpha.example.com"
      certificate = "..."
      key         = "..."
    },
    {
      domain      = "beta.example.com"
      certificate = "..."
      key         = "..."
    }
  ]
}