1. Packages
  2. Kong
  3. API Docs
  4. Plugin
Kong v4.5.3 published on Friday, Apr 12, 2024 by Pulumi

kong.Plugin

Explore with Pulumi AI

kong logo
Kong v4.5.3 published on Friday, Apr 12, 2024 by Pulumi

    # kong.Plugin

    The plugin resource maps directly onto the json for the API endpoint in Kong. For more information on the parameters see the Kong Api create documentation. The config_json is passed through to the plugin to configure it as is.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as kong from "@pulumi/kong";
    
    const rateLimit = new kong.Plugin("rateLimit", {configJson: `	{
    		"second": 5,
    		"hour" : 1000
    	}
    
    `});
    
    import pulumi
    import pulumi_kong as kong
    
    rate_limit = kong.Plugin("rateLimit", config_json="""	{
    		"second": 5,
    		"hour" : 1000
    	}
    
    """)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-kong/sdk/v4/go/kong"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := kong.NewPlugin(ctx, "rateLimit", &kong.PluginArgs{
    			ConfigJson: pulumi.String("	{\n		\"second\": 5,\n		\"hour\" : 1000\n	}\n\n"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Kong = Pulumi.Kong;
    
    return await Deployment.RunAsync(() => 
    {
        var rateLimit = new Kong.Plugin("rateLimit", new()
        {
            ConfigJson = @"	{
    		""second"": 5,
    		""hour"" : 1000
    	}
    
    ",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.kong.Plugin;
    import com.pulumi.kong.PluginArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var rateLimit = new Plugin("rateLimit", PluginArgs.builder()        
                .configJson("""
    	{
    		"second": 5,
    		"hour" : 1000
    	}
    
                """)
                .build());
    
        }
    }
    
    resources:
      rateLimit:
        type: kong:Plugin
        properties:
          configJson: |+
            	{
            		"second": 5,
            		"hour" : 1000
            	}        
    

    To apply a plugin to a consumer use the consumer_id property, for example:

    import * as pulumi from "@pulumi/pulumi";
    import * as kong from "@pulumi/kong";
    
    const pluginConsumer = new kong.Consumer("pluginConsumer", {
        customId: "567",
        username: "PluginUser",
    });
    const rateLimit = new kong.Plugin("rateLimit", {
        configJson: `	{
    		"second": 5,
    		"hour" : 1000
    	}
    
    `,
        consumerId: pluginConsumer.id,
    });
    
    import pulumi
    import pulumi_kong as kong
    
    plugin_consumer = kong.Consumer("pluginConsumer",
        custom_id="567",
        username="PluginUser")
    rate_limit = kong.Plugin("rateLimit",
        config_json="""	{
    		"second": 5,
    		"hour" : 1000
    	}
    
    """,
        consumer_id=plugin_consumer.id)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-kong/sdk/v4/go/kong"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		pluginConsumer, err := kong.NewConsumer(ctx, "pluginConsumer", &kong.ConsumerArgs{
    			CustomId: pulumi.String("567"),
    			Username: pulumi.String("PluginUser"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = kong.NewPlugin(ctx, "rateLimit", &kong.PluginArgs{
    			ConfigJson: pulumi.String("	{\n		\"second\": 5,\n		\"hour\" : 1000\n	}\n\n"),
    			ConsumerId: pluginConsumer.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Kong = Pulumi.Kong;
    
    return await Deployment.RunAsync(() => 
    {
        var pluginConsumer = new Kong.Consumer("pluginConsumer", new()
        {
            CustomId = "567",
            Username = "PluginUser",
        });
    
        var rateLimit = new Kong.Plugin("rateLimit", new()
        {
            ConfigJson = @"	{
    		""second"": 5,
    		""hour"" : 1000
    	}
    
    ",
            ConsumerId = pluginConsumer.Id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.kong.Consumer;
    import com.pulumi.kong.ConsumerArgs;
    import com.pulumi.kong.Plugin;
    import com.pulumi.kong.PluginArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var pluginConsumer = new Consumer("pluginConsumer", ConsumerArgs.builder()        
                .customId("567")
                .username("PluginUser")
                .build());
    
            var rateLimit = new Plugin("rateLimit", PluginArgs.builder()        
                .configJson("""
    	{
    		"second": 5,
    		"hour" : 1000
    	}
    
                """)
                .consumerId(pluginConsumer.id())
                .build());
    
        }
    }
    
    resources:
      pluginConsumer:
        type: kong:Consumer
        properties:
          customId: '567'
          username: PluginUser
      rateLimit:
        type: kong:Plugin
        properties:
          configJson: |+
            	{
            		"second": 5,
            		"hour" : 1000
            	}        
    
          consumerId: ${pluginConsumer.id}
    

    To apply a plugin to a service use the service_id property, for example:

    import * as pulumi from "@pulumi/pulumi";
    import * as kong from "@pulumi/kong";
    
    const service = new kong.Service("service", {
        host: "test.org",
        protocol: "http",
    });
    const rateLimit = new kong.Plugin("rateLimit", {
        configJson: `	{
    		"second": 10,
    		"hour" : 2000
    	}
    
    `,
        serviceId: service.id,
    });
    
    import pulumi
    import pulumi_kong as kong
    
    service = kong.Service("service",
        host="test.org",
        protocol="http")
    rate_limit = kong.Plugin("rateLimit",
        config_json="""	{
    		"second": 10,
    		"hour" : 2000
    	}
    
    """,
        service_id=service.id)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-kong/sdk/v4/go/kong"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		service, err := kong.NewService(ctx, "service", &kong.ServiceArgs{
    			Host:     pulumi.String("test.org"),
    			Protocol: pulumi.String("http"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = kong.NewPlugin(ctx, "rateLimit", &kong.PluginArgs{
    			ConfigJson: pulumi.String("	{\n		\"second\": 10,\n		\"hour\" : 2000\n	}\n\n"),
    			ServiceId:  service.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Kong = Pulumi.Kong;
    
    return await Deployment.RunAsync(() => 
    {
        var service = new Kong.Service("service", new()
        {
            Host = "test.org",
            Protocol = "http",
        });
    
        var rateLimit = new Kong.Plugin("rateLimit", new()
        {
            ConfigJson = @"	{
    		""second"": 10,
    		""hour"" : 2000
    	}
    
    ",
            ServiceId = service.Id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.kong.Service;
    import com.pulumi.kong.ServiceArgs;
    import com.pulumi.kong.Plugin;
    import com.pulumi.kong.PluginArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var service = new Service("service", ServiceArgs.builder()        
                .host("test.org")
                .protocol("http")
                .build());
    
            var rateLimit = new Plugin("rateLimit", PluginArgs.builder()        
                .configJson("""
    	{
    		"second": 10,
    		"hour" : 2000
    	}
    
                """)
                .serviceId(service.id())
                .build());
    
        }
    }
    
    resources:
      service:
        type: kong:Service
        properties:
          host: test.org
          protocol: http
      rateLimit:
        type: kong:Plugin
        properties:
          configJson: |+
            	{
            		"second": 10,
            		"hour" : 2000
            	}        
    
          serviceId: ${service.id}
    

    To apply a plugin to a route use the route_id property, for example:

    import * as pulumi from "@pulumi/pulumi";
    import * as kong from "@pulumi/kong";
    
    const service = new kong.Service("service", {
        host: "test.org",
        protocol: "http",
    });
    const rateLimit = new kong.Plugin("rateLimit", {
        configJson: `	{
    		"second": 11,
    		"hour" : 4000
    	}
    
    `,
        enabled: true,
        serviceId: service.id,
    });
    
    import pulumi
    import pulumi_kong as kong
    
    service = kong.Service("service",
        host="test.org",
        protocol="http")
    rate_limit = kong.Plugin("rateLimit",
        config_json="""	{
    		"second": 11,
    		"hour" : 4000
    	}
    
    """,
        enabled=True,
        service_id=service.id)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-kong/sdk/v4/go/kong"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		service, err := kong.NewService(ctx, "service", &kong.ServiceArgs{
    			Host:     pulumi.String("test.org"),
    			Protocol: pulumi.String("http"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = kong.NewPlugin(ctx, "rateLimit", &kong.PluginArgs{
    			ConfigJson: pulumi.String("	{\n		\"second\": 11,\n		\"hour\" : 4000\n	}\n\n"),
    			Enabled:    pulumi.Bool(true),
    			ServiceId:  service.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Kong = Pulumi.Kong;
    
    return await Deployment.RunAsync(() => 
    {
        var service = new Kong.Service("service", new()
        {
            Host = "test.org",
            Protocol = "http",
        });
    
        var rateLimit = new Kong.Plugin("rateLimit", new()
        {
            ConfigJson = @"	{
    		""second"": 11,
    		""hour"" : 4000
    	}
    
    ",
            Enabled = true,
            ServiceId = service.Id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.kong.Service;
    import com.pulumi.kong.ServiceArgs;
    import com.pulumi.kong.Plugin;
    import com.pulumi.kong.PluginArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var service = new Service("service", ServiceArgs.builder()        
                .host("test.org")
                .protocol("http")
                .build());
    
            var rateLimit = new Plugin("rateLimit", PluginArgs.builder()        
                .configJson("""
    	{
    		"second": 11,
    		"hour" : 4000
    	}
    
                """)
                .enabled(true)
                .serviceId(service.id())
                .build());
    
        }
    }
    
    resources:
      service:
        type: kong:Service
        properties:
          host: test.org
          protocol: http
      rateLimit:
        type: kong:Plugin
        properties:
          configJson: |+
            	{
            		"second": 11,
            		"hour" : 4000
            	}        
    
          enabled: true
          serviceId: ${service.id}
    

    Create Plugin Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Plugin(name: string, args?: PluginArgs, opts?: CustomResourceOptions);
    @overload
    def Plugin(resource_name: str,
               args: Optional[PluginArgs] = None,
               opts: Optional[ResourceOptions] = None)
    
    @overload
    def Plugin(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               config_json: Optional[str] = None,
               consumer_id: Optional[str] = None,
               enabled: Optional[bool] = None,
               name: Optional[str] = None,
               route_id: Optional[str] = None,
               service_id: Optional[str] = None,
               strict_match: Optional[bool] = None,
               tags: Optional[Sequence[str]] = None)
    func NewPlugin(ctx *Context, name string, args *PluginArgs, opts ...ResourceOption) (*Plugin, error)
    public Plugin(string name, PluginArgs? args = null, CustomResourceOptions? opts = null)
    public Plugin(String name, PluginArgs args)
    public Plugin(String name, PluginArgs args, CustomResourceOptions options)
    
    type: kong:Plugin
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args PluginArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args PluginArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args PluginArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PluginArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PluginArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var pluginResource = new Kong.Plugin("pluginResource", new()
    {
        ConfigJson = "string",
        ConsumerId = "string",
        Enabled = false,
        Name = "string",
        RouteId = "string",
        ServiceId = "string",
        StrictMatch = false,
        Tags = new[]
        {
            "string",
        },
    });
    
    example, err := kong.NewPlugin(ctx, "pluginResource", &kong.PluginArgs{
    	ConfigJson:  pulumi.String("string"),
    	ConsumerId:  pulumi.String("string"),
    	Enabled:     pulumi.Bool(false),
    	Name:        pulumi.String("string"),
    	RouteId:     pulumi.String("string"),
    	ServiceId:   pulumi.String("string"),
    	StrictMatch: pulumi.Bool(false),
    	Tags: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    })
    
    var pluginResource = new Plugin("pluginResource", PluginArgs.builder()        
        .configJson("string")
        .consumerId("string")
        .enabled(false)
        .name("string")
        .routeId("string")
        .serviceId("string")
        .strictMatch(false)
        .tags("string")
        .build());
    
    plugin_resource = kong.Plugin("pluginResource",
        config_json="string",
        consumer_id="string",
        enabled=False,
        name="string",
        route_id="string",
        service_id="string",
        strict_match=False,
        tags=["string"])
    
    const pluginResource = new kong.Plugin("pluginResource", {
        configJson: "string",
        consumerId: "string",
        enabled: false,
        name: "string",
        routeId: "string",
        serviceId: "string",
        strictMatch: false,
        tags: ["string"],
    });
    
    type: kong:Plugin
    properties:
        configJson: string
        consumerId: string
        enabled: false
        name: string
        routeId: string
        serviceId: string
        strictMatch: false
        tags:
            - string
    

    Plugin Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The Plugin resource accepts the following input properties:

    ConfigJson string
    this is the configuration json for how you want to configure the plugin. The json is passed straight through to kong as is. You can get the json config from the Kong documentation page of the plugin you are configuring
    ConsumerId string
    the consumer id you want to configure the plugin for
    Enabled bool
    whether the plugin is enabled or not, use if you want to keep the plugin installed but disable it
    Name string
    RouteId string
    the route id that you want to configure the plugin for
    ServiceId string
    the service id that you want to configure the plugin for
    StrictMatch bool
    Tags List<string>
    A list of strings associated with the Plugin for grouping and filtering
    ConfigJson string
    this is the configuration json for how you want to configure the plugin. The json is passed straight through to kong as is. You can get the json config from the Kong documentation page of the plugin you are configuring
    ConsumerId string
    the consumer id you want to configure the plugin for
    Enabled bool
    whether the plugin is enabled or not, use if you want to keep the plugin installed but disable it
    Name string
    RouteId string
    the route id that you want to configure the plugin for
    ServiceId string
    the service id that you want to configure the plugin for
    StrictMatch bool
    Tags []string
    A list of strings associated with the Plugin for grouping and filtering
    configJson String
    this is the configuration json for how you want to configure the plugin. The json is passed straight through to kong as is. You can get the json config from the Kong documentation page of the plugin you are configuring
    consumerId String
    the consumer id you want to configure the plugin for
    enabled Boolean
    whether the plugin is enabled or not, use if you want to keep the plugin installed but disable it
    name String
    routeId String
    the route id that you want to configure the plugin for
    serviceId String
    the service id that you want to configure the plugin for
    strictMatch Boolean
    tags List<String>
    A list of strings associated with the Plugin for grouping and filtering
    configJson string
    this is the configuration json for how you want to configure the plugin. The json is passed straight through to kong as is. You can get the json config from the Kong documentation page of the plugin you are configuring
    consumerId string
    the consumer id you want to configure the plugin for
    enabled boolean
    whether the plugin is enabled or not, use if you want to keep the plugin installed but disable it
    name string
    routeId string
    the route id that you want to configure the plugin for
    serviceId string
    the service id that you want to configure the plugin for
    strictMatch boolean
    tags string[]
    A list of strings associated with the Plugin for grouping and filtering
    config_json str
    this is the configuration json for how you want to configure the plugin. The json is passed straight through to kong as is. You can get the json config from the Kong documentation page of the plugin you are configuring
    consumer_id str
    the consumer id you want to configure the plugin for
    enabled bool
    whether the plugin is enabled or not, use if you want to keep the plugin installed but disable it
    name str
    route_id str
    the route id that you want to configure the plugin for
    service_id str
    the service id that you want to configure the plugin for
    strict_match bool
    tags Sequence[str]
    A list of strings associated with the Plugin for grouping and filtering
    configJson String
    this is the configuration json for how you want to configure the plugin. The json is passed straight through to kong as is. You can get the json config from the Kong documentation page of the plugin you are configuring
    consumerId String
    the consumer id you want to configure the plugin for
    enabled Boolean
    whether the plugin is enabled or not, use if you want to keep the plugin installed but disable it
    name String
    routeId String
    the route id that you want to configure the plugin for
    serviceId String
    the service id that you want to configure the plugin for
    strictMatch Boolean
    tags List<String>
    A list of strings associated with the Plugin for grouping and filtering

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Plugin resource produces the following output properties:

    ComputedConfig string
    Id string
    The provider-assigned unique ID for this managed resource.
    ComputedConfig string
    Id string
    The provider-assigned unique ID for this managed resource.
    computedConfig String
    id String
    The provider-assigned unique ID for this managed resource.
    computedConfig string
    id string
    The provider-assigned unique ID for this managed resource.
    computed_config str
    id str
    The provider-assigned unique ID for this managed resource.
    computedConfig String
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing Plugin Resource

    Get an existing Plugin resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: PluginState, opts?: CustomResourceOptions): Plugin
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            computed_config: Optional[str] = None,
            config_json: Optional[str] = None,
            consumer_id: Optional[str] = None,
            enabled: Optional[bool] = None,
            name: Optional[str] = None,
            route_id: Optional[str] = None,
            service_id: Optional[str] = None,
            strict_match: Optional[bool] = None,
            tags: Optional[Sequence[str]] = None) -> Plugin
    func GetPlugin(ctx *Context, name string, id IDInput, state *PluginState, opts ...ResourceOption) (*Plugin, error)
    public static Plugin Get(string name, Input<string> id, PluginState? state, CustomResourceOptions? opts = null)
    public static Plugin get(String name, Output<String> id, PluginState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    ComputedConfig string
    ConfigJson string
    this is the configuration json for how you want to configure the plugin. The json is passed straight through to kong as is. You can get the json config from the Kong documentation page of the plugin you are configuring
    ConsumerId string
    the consumer id you want to configure the plugin for
    Enabled bool
    whether the plugin is enabled or not, use if you want to keep the plugin installed but disable it
    Name string
    RouteId string
    the route id that you want to configure the plugin for
    ServiceId string
    the service id that you want to configure the plugin for
    StrictMatch bool
    Tags List<string>
    A list of strings associated with the Plugin for grouping and filtering
    ComputedConfig string
    ConfigJson string
    this is the configuration json for how you want to configure the plugin. The json is passed straight through to kong as is. You can get the json config from the Kong documentation page of the plugin you are configuring
    ConsumerId string
    the consumer id you want to configure the plugin for
    Enabled bool
    whether the plugin is enabled or not, use if you want to keep the plugin installed but disable it
    Name string
    RouteId string
    the route id that you want to configure the plugin for
    ServiceId string
    the service id that you want to configure the plugin for
    StrictMatch bool
    Tags []string
    A list of strings associated with the Plugin for grouping and filtering
    computedConfig String
    configJson String
    this is the configuration json for how you want to configure the plugin. The json is passed straight through to kong as is. You can get the json config from the Kong documentation page of the plugin you are configuring
    consumerId String
    the consumer id you want to configure the plugin for
    enabled Boolean
    whether the plugin is enabled or not, use if you want to keep the plugin installed but disable it
    name String
    routeId String
    the route id that you want to configure the plugin for
    serviceId String
    the service id that you want to configure the plugin for
    strictMatch Boolean
    tags List<String>
    A list of strings associated with the Plugin for grouping and filtering
    computedConfig string
    configJson string
    this is the configuration json for how you want to configure the plugin. The json is passed straight through to kong as is. You can get the json config from the Kong documentation page of the plugin you are configuring
    consumerId string
    the consumer id you want to configure the plugin for
    enabled boolean
    whether the plugin is enabled or not, use if you want to keep the plugin installed but disable it
    name string
    routeId string
    the route id that you want to configure the plugin for
    serviceId string
    the service id that you want to configure the plugin for
    strictMatch boolean
    tags string[]
    A list of strings associated with the Plugin for grouping and filtering
    computed_config str
    config_json str
    this is the configuration json for how you want to configure the plugin. The json is passed straight through to kong as is. You can get the json config from the Kong documentation page of the plugin you are configuring
    consumer_id str
    the consumer id you want to configure the plugin for
    enabled bool
    whether the plugin is enabled or not, use if you want to keep the plugin installed but disable it
    name str
    route_id str
    the route id that you want to configure the plugin for
    service_id str
    the service id that you want to configure the plugin for
    strict_match bool
    tags Sequence[str]
    A list of strings associated with the Plugin for grouping and filtering
    computedConfig String
    configJson String
    this is the configuration json for how you want to configure the plugin. The json is passed straight through to kong as is. You can get the json config from the Kong documentation page of the plugin you are configuring
    consumerId String
    the consumer id you want to configure the plugin for
    enabled Boolean
    whether the plugin is enabled or not, use if you want to keep the plugin installed but disable it
    name String
    routeId String
    the route id that you want to configure the plugin for
    serviceId String
    the service id that you want to configure the plugin for
    strictMatch Boolean
    tags List<String>
    A list of strings associated with the Plugin for grouping and filtering

    Import

    To import a plugin:

    $ pulumi import kong:index/plugin:Plugin <plugin_identifier> <plugin_id>
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Kong pulumi/pulumi-kong
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the kong Terraform Provider.
    kong logo
    Kong v4.5.3 published on Friday, Apr 12, 2024 by Pulumi