Skip to content

chilledornaments/terraform-provider-kong-gateway

 
 

Repository files navigation

terraform-provider-kong-gateway

This repository contains a Terraform provider for Kong Gateway.

Capabilities

This provider can manage the following resources:

  • Service
  • Route
  • Plugins
  • Consumers
  • Consumer Groups
    • Consumer Group Members
  • Credentials
    • Basic Auth
    • Key Auth
    • JWT
    • HMAC Auth
    • ACL
  • Upstream
  • Target
  • Vault
  • Certificate
  • CA Certificate
  • SNI
  • Key
  • Key Set

Usage

The provider can be installed from the Terraform registry. Before using the provider, you must configure a server_url.

terraform {
  required_providers {
    kong-gateway = {
      source = "kong/kong-gateway"
    }
  }
}

provider "kong-gateway" {
  server_url = "http://localhost:8001"
  # admin_token = "your_rbac_token_here__enterprise_only"
}

Examples

The examples directory contains sample usage for all supported resources. For a full list of supported parameters for each resource, see the provider documentation.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 100.0%