Kong / terraform-provider-kong-gateway

2 stars 1 forks source link

terraform-provider-kong-gateway

This repository contains a Terraform provider for Kong Gateway.

Capabilities

This provider can manage the following resources:

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"
}

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.