1. Packages
  2. Konnect Provider
  3. API Docs
  4. GatewayControlPlane
konnect 2.5.0 published on Tuesday, Apr 15, 2025 by kong

konnect.GatewayControlPlane

Explore with Pulumi AI

GatewayControlPlane Resource

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as konnect from "@pulumi/konnect";

const myGatewaycontrolplane = new konnect.GatewayControlPlane("myGatewaycontrolplane", {
    authType: "pinned_client_certs",
    cloudGateway: false,
    clusterType: "CLUSTER_TYPE_CONTROL_PLANE",
    description: "A test control plane for exploration.",
    labels: {
        key: "value",
    },
    proxyUrls: [{
        host: "...my_host...",
        port: 0,
        protocol: "...my_protocol...",
    }],
});
Copy
import pulumi
import pulumi_konnect as konnect

my_gatewaycontrolplane = konnect.GatewayControlPlane("myGatewaycontrolplane",
    auth_type="pinned_client_certs",
    cloud_gateway=False,
    cluster_type="CLUSTER_TYPE_CONTROL_PLANE",
    description="A test control plane for exploration.",
    labels={
        "key": "value",
    },
    proxy_urls=[{
        "host": "...my_host...",
        "port": 0,
        "protocol": "...my_protocol...",
    }])
Copy
package main

import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/konnect/v2/konnect"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := konnect.NewGatewayControlPlane(ctx, "myGatewaycontrolplane", &konnect.GatewayControlPlaneArgs{
			AuthType:     pulumi.String("pinned_client_certs"),
			CloudGateway: pulumi.Bool(false),
			ClusterType:  pulumi.String("CLUSTER_TYPE_CONTROL_PLANE"),
			Description:  pulumi.String("A test control plane for exploration."),
			Labels: pulumi.StringMap{
				"key": pulumi.String("value"),
			},
			ProxyUrls: konnect.GatewayControlPlaneProxyUrlArray{
				&konnect.GatewayControlPlaneProxyUrlArgs{
					Host:     pulumi.String("...my_host..."),
					Port:     pulumi.Float64(0),
					Protocol: pulumi.String("...my_protocol..."),
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Konnect = Pulumi.Konnect;

return await Deployment.RunAsync(() => 
{
    var myGatewaycontrolplane = new Konnect.GatewayControlPlane("myGatewaycontrolplane", new()
    {
        AuthType = "pinned_client_certs",
        CloudGateway = false,
        ClusterType = "CLUSTER_TYPE_CONTROL_PLANE",
        Description = "A test control plane for exploration.",
        Labels = 
        {
            { "key", "value" },
        },
        ProxyUrls = new[]
        {
            new Konnect.Inputs.GatewayControlPlaneProxyUrlArgs
            {
                Host = "...my_host...",
                Port = 0,
                Protocol = "...my_protocol...",
            },
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.konnect.GatewayControlPlane;
import com.pulumi.konnect.GatewayControlPlaneArgs;
import com.pulumi.konnect.inputs.GatewayControlPlaneProxyUrlArgs;
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 myGatewaycontrolplane = new GatewayControlPlane("myGatewaycontrolplane", GatewayControlPlaneArgs.builder()
            .authType("pinned_client_certs")
            .cloudGateway(false)
            .clusterType("CLUSTER_TYPE_CONTROL_PLANE")
            .description("A test control plane for exploration.")
            .labels(Map.of("key", "value"))
            .proxyUrls(GatewayControlPlaneProxyUrlArgs.builder()
                .host("...my_host...")
                .port(0)
                .protocol("...my_protocol...")
                .build())
            .build());

    }
}
Copy
resources:
  myGatewaycontrolplane:
    type: konnect:GatewayControlPlane
    properties:
      authType: pinned_client_certs
      cloudGateway: false
      clusterType: CLUSTER_TYPE_CONTROL_PLANE
      description: A test control plane for exploration.
      labels:
        key: value
      proxyUrls:
        - host: '...my_host...'
          port: 0
          protocol: '...my_protocol...'
Copy

Create GatewayControlPlane Resource

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

Constructor syntax

new GatewayControlPlane(name: string, args?: GatewayControlPlaneArgs, opts?: CustomResourceOptions);
@overload
def GatewayControlPlane(resource_name: str,
                        args: Optional[GatewayControlPlaneArgs] = None,
                        opts: Optional[ResourceOptions] = None)

@overload
def GatewayControlPlane(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        auth_type: Optional[str] = None,
                        cloud_gateway: Optional[bool] = None,
                        cluster_type: Optional[str] = None,
                        description: Optional[str] = None,
                        labels: Optional[Mapping[str, str]] = None,
                        name: Optional[str] = None,
                        proxy_urls: Optional[Sequence[GatewayControlPlaneProxyUrlArgs]] = None)
func NewGatewayControlPlane(ctx *Context, name string, args *GatewayControlPlaneArgs, opts ...ResourceOption) (*GatewayControlPlane, error)
public GatewayControlPlane(string name, GatewayControlPlaneArgs? args = null, CustomResourceOptions? opts = null)
public GatewayControlPlane(String name, GatewayControlPlaneArgs args)
public GatewayControlPlane(String name, GatewayControlPlaneArgs args, CustomResourceOptions options)
type: konnect:GatewayControlPlane
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

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

Constructor example

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

var gatewayControlPlaneResource = new Konnect.GatewayControlPlane("gatewayControlPlaneResource", new()
{
    AuthType = "string",
    CloudGateway = false,
    ClusterType = "string",
    Description = "string",
    Labels = 
    {
        { "string", "string" },
    },
    Name = "string",
    ProxyUrls = new[]
    {
        new Konnect.Inputs.GatewayControlPlaneProxyUrlArgs
        {
            Host = "string",
            Port = 0,
            Protocol = "string",
        },
    },
});
Copy
example, err := konnect.NewGatewayControlPlane(ctx, "gatewayControlPlaneResource", &konnect.GatewayControlPlaneArgs{
	AuthType:     pulumi.String("string"),
	CloudGateway: pulumi.Bool(false),
	ClusterType:  pulumi.String("string"),
	Description:  pulumi.String("string"),
	Labels: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Name: pulumi.String("string"),
	ProxyUrls: konnect.GatewayControlPlaneProxyUrlArray{
		&konnect.GatewayControlPlaneProxyUrlArgs{
			Host:     pulumi.String("string"),
			Port:     pulumi.Float64(0),
			Protocol: pulumi.String("string"),
		},
	},
})
Copy
var gatewayControlPlaneResource = new GatewayControlPlane("gatewayControlPlaneResource", GatewayControlPlaneArgs.builder()
    .authType("string")
    .cloudGateway(false)
    .clusterType("string")
    .description("string")
    .labels(Map.of("string", "string"))
    .name("string")
    .proxyUrls(GatewayControlPlaneProxyUrlArgs.builder()
        .host("string")
        .port(0)
        .protocol("string")
        .build())
    .build());
Copy
gateway_control_plane_resource = konnect.GatewayControlPlane("gatewayControlPlaneResource",
    auth_type="string",
    cloud_gateway=False,
    cluster_type="string",
    description="string",
    labels={
        "string": "string",
    },
    name="string",
    proxy_urls=[{
        "host": "string",
        "port": 0,
        "protocol": "string",
    }])
Copy
const gatewayControlPlaneResource = new konnect.GatewayControlPlane("gatewayControlPlaneResource", {
    authType: "string",
    cloudGateway: false,
    clusterType: "string",
    description: "string",
    labels: {
        string: "string",
    },
    name: "string",
    proxyUrls: [{
        host: "string",
        port: 0,
        protocol: "string",
    }],
});
Copy
type: konnect:GatewayControlPlane
properties:
    authType: string
    cloudGateway: false
    clusterType: string
    description: string
    labels:
        string: string
    name: string
    proxyUrls:
        - host: string
          port: 0
          protocol: string
Copy

GatewayControlPlane Resource Properties

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

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The GatewayControlPlane resource accepts the following input properties:

AuthType string
The auth type value of the cluster associated with the Runtime Group. must be one of ["pinnedclientcerts", "pkiclientcerts"]
CloudGateway bool
Whether this control-plane can be used for cloud-gateways. Requires replacement if changed.
ClusterType string
The ClusterType value of the cluster associated with the Control Plane. must be one of ["CLUSTERTYPECONTROLPLANE", "CLUSTERTYPEK8SINGRESSCONTROLLER", "CLUSTERTYPECONTROLPLANEGROUP", "CLUSTERTYPESERVERLESS", "CLUSTERTYPE_HYBRID"]; Requires replacement if changed.
Description string
The description of the control plane in Konnect.
Labels Dictionary<string, string>
Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.
Name string
The name of the control plane.
ProxyUrls List<GatewayControlPlaneProxyUrl>
Array of proxy URLs associated with reaching the data-planes connected to a control-plane.
AuthType string
The auth type value of the cluster associated with the Runtime Group. must be one of ["pinnedclientcerts", "pkiclientcerts"]
CloudGateway bool
Whether this control-plane can be used for cloud-gateways. Requires replacement if changed.
ClusterType string
The ClusterType value of the cluster associated with the Control Plane. must be one of ["CLUSTERTYPECONTROLPLANE", "CLUSTERTYPEK8SINGRESSCONTROLLER", "CLUSTERTYPECONTROLPLANEGROUP", "CLUSTERTYPESERVERLESS", "CLUSTERTYPE_HYBRID"]; Requires replacement if changed.
Description string
The description of the control plane in Konnect.
Labels map[string]string
Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.
Name string
The name of the control plane.
ProxyUrls []GatewayControlPlaneProxyUrlArgs
Array of proxy URLs associated with reaching the data-planes connected to a control-plane.
authType String
The auth type value of the cluster associated with the Runtime Group. must be one of ["pinnedclientcerts", "pkiclientcerts"]
cloudGateway Boolean
Whether this control-plane can be used for cloud-gateways. Requires replacement if changed.
clusterType String
The ClusterType value of the cluster associated with the Control Plane. must be one of ["CLUSTERTYPECONTROLPLANE", "CLUSTERTYPEK8SINGRESSCONTROLLER", "CLUSTERTYPECONTROLPLANEGROUP", "CLUSTERTYPESERVERLESS", "CLUSTERTYPE_HYBRID"]; Requires replacement if changed.
description String
The description of the control plane in Konnect.
labels Map<String,String>
Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.
name String
The name of the control plane.
proxyUrls List<GatewayControlPlaneProxyUrl>
Array of proxy URLs associated with reaching the data-planes connected to a control-plane.
authType string
The auth type value of the cluster associated with the Runtime Group. must be one of ["pinnedclientcerts", "pkiclientcerts"]
cloudGateway boolean
Whether this control-plane can be used for cloud-gateways. Requires replacement if changed.
clusterType string
The ClusterType value of the cluster associated with the Control Plane. must be one of ["CLUSTERTYPECONTROLPLANE", "CLUSTERTYPEK8SINGRESSCONTROLLER", "CLUSTERTYPECONTROLPLANEGROUP", "CLUSTERTYPESERVERLESS", "CLUSTERTYPE_HYBRID"]; Requires replacement if changed.
description string
The description of the control plane in Konnect.
labels {[key: string]: string}
Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.
name string
The name of the control plane.
proxyUrls GatewayControlPlaneProxyUrl[]
Array of proxy URLs associated with reaching the data-planes connected to a control-plane.
auth_type str
The auth type value of the cluster associated with the Runtime Group. must be one of ["pinnedclientcerts", "pkiclientcerts"]
cloud_gateway bool
Whether this control-plane can be used for cloud-gateways. Requires replacement if changed.
cluster_type str
The ClusterType value of the cluster associated with the Control Plane. must be one of ["CLUSTERTYPECONTROLPLANE", "CLUSTERTYPEK8SINGRESSCONTROLLER", "CLUSTERTYPECONTROLPLANEGROUP", "CLUSTERTYPESERVERLESS", "CLUSTERTYPE_HYBRID"]; Requires replacement if changed.
description str
The description of the control plane in Konnect.
labels Mapping[str, str]
Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.
name str
The name of the control plane.
proxy_urls Sequence[GatewayControlPlaneProxyUrlArgs]
Array of proxy URLs associated with reaching the data-planes connected to a control-plane.
authType String
The auth type value of the cluster associated with the Runtime Group. must be one of ["pinnedclientcerts", "pkiclientcerts"]
cloudGateway Boolean
Whether this control-plane can be used for cloud-gateways. Requires replacement if changed.
clusterType String
The ClusterType value of the cluster associated with the Control Plane. must be one of ["CLUSTERTYPECONTROLPLANE", "CLUSTERTYPEK8SINGRESSCONTROLLER", "CLUSTERTYPECONTROLPLANEGROUP", "CLUSTERTYPESERVERLESS", "CLUSTERTYPE_HYBRID"]; Requires replacement if changed.
description String
The description of the control plane in Konnect.
labels Map<String>
Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.
name String
The name of the control plane.
proxyUrls List<Property Map>
Array of proxy URLs associated with reaching the data-planes connected to a control-plane.

Outputs

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

Config GatewayControlPlaneConfig
CP configuration object for related access endpoints.
Id string
The provider-assigned unique ID for this managed resource.
Config GatewayControlPlaneConfig
CP configuration object for related access endpoints.
Id string
The provider-assigned unique ID for this managed resource.
config GatewayControlPlaneConfig
CP configuration object for related access endpoints.
id String
The provider-assigned unique ID for this managed resource.
config GatewayControlPlaneConfig
CP configuration object for related access endpoints.
id string
The provider-assigned unique ID for this managed resource.
config GatewayControlPlaneConfig
CP configuration object for related access endpoints.
id str
The provider-assigned unique ID for this managed resource.
config Property Map
CP configuration object for related access endpoints.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing GatewayControlPlane Resource

Get an existing GatewayControlPlane 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?: GatewayControlPlaneState, opts?: CustomResourceOptions): GatewayControlPlane
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        auth_type: Optional[str] = None,
        cloud_gateway: Optional[bool] = None,
        cluster_type: Optional[str] = None,
        config: Optional[GatewayControlPlaneConfigArgs] = None,
        description: Optional[str] = None,
        labels: Optional[Mapping[str, str]] = None,
        name: Optional[str] = None,
        proxy_urls: Optional[Sequence[GatewayControlPlaneProxyUrlArgs]] = None) -> GatewayControlPlane
func GetGatewayControlPlane(ctx *Context, name string, id IDInput, state *GatewayControlPlaneState, opts ...ResourceOption) (*GatewayControlPlane, error)
public static GatewayControlPlane Get(string name, Input<string> id, GatewayControlPlaneState? state, CustomResourceOptions? opts = null)
public static GatewayControlPlane get(String name, Output<String> id, GatewayControlPlaneState state, CustomResourceOptions options)
resources:  _:    type: konnect:GatewayControlPlane    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
AuthType string
The auth type value of the cluster associated with the Runtime Group. must be one of ["pinnedclientcerts", "pkiclientcerts"]
CloudGateway bool
Whether this control-plane can be used for cloud-gateways. Requires replacement if changed.
ClusterType string
The ClusterType value of the cluster associated with the Control Plane. must be one of ["CLUSTERTYPECONTROLPLANE", "CLUSTERTYPEK8SINGRESSCONTROLLER", "CLUSTERTYPECONTROLPLANEGROUP", "CLUSTERTYPESERVERLESS", "CLUSTERTYPE_HYBRID"]; Requires replacement if changed.
Config GatewayControlPlaneConfig
CP configuration object for related access endpoints.
Description string
The description of the control plane in Konnect.
Labels Dictionary<string, string>
Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.
Name string
The name of the control plane.
ProxyUrls List<GatewayControlPlaneProxyUrl>
Array of proxy URLs associated with reaching the data-planes connected to a control-plane.
AuthType string
The auth type value of the cluster associated with the Runtime Group. must be one of ["pinnedclientcerts", "pkiclientcerts"]
CloudGateway bool
Whether this control-plane can be used for cloud-gateways. Requires replacement if changed.
ClusterType string
The ClusterType value of the cluster associated with the Control Plane. must be one of ["CLUSTERTYPECONTROLPLANE", "CLUSTERTYPEK8SINGRESSCONTROLLER", "CLUSTERTYPECONTROLPLANEGROUP", "CLUSTERTYPESERVERLESS", "CLUSTERTYPE_HYBRID"]; Requires replacement if changed.
Config GatewayControlPlaneConfigArgs
CP configuration object for related access endpoints.
Description string
The description of the control plane in Konnect.
Labels map[string]string
Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.
Name string
The name of the control plane.
ProxyUrls []GatewayControlPlaneProxyUrlArgs
Array of proxy URLs associated with reaching the data-planes connected to a control-plane.
authType String
The auth type value of the cluster associated with the Runtime Group. must be one of ["pinnedclientcerts", "pkiclientcerts"]
cloudGateway Boolean
Whether this control-plane can be used for cloud-gateways. Requires replacement if changed.
clusterType String
The ClusterType value of the cluster associated with the Control Plane. must be one of ["CLUSTERTYPECONTROLPLANE", "CLUSTERTYPEK8SINGRESSCONTROLLER", "CLUSTERTYPECONTROLPLANEGROUP", "CLUSTERTYPESERVERLESS", "CLUSTERTYPE_HYBRID"]; Requires replacement if changed.
config GatewayControlPlaneConfig
CP configuration object for related access endpoints.
description String
The description of the control plane in Konnect.
labels Map<String,String>
Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.
name String
The name of the control plane.
proxyUrls List<GatewayControlPlaneProxyUrl>
Array of proxy URLs associated with reaching the data-planes connected to a control-plane.
authType string
The auth type value of the cluster associated with the Runtime Group. must be one of ["pinnedclientcerts", "pkiclientcerts"]
cloudGateway boolean
Whether this control-plane can be used for cloud-gateways. Requires replacement if changed.
clusterType string
The ClusterType value of the cluster associated with the Control Plane. must be one of ["CLUSTERTYPECONTROLPLANE", "CLUSTERTYPEK8SINGRESSCONTROLLER", "CLUSTERTYPECONTROLPLANEGROUP", "CLUSTERTYPESERVERLESS", "CLUSTERTYPE_HYBRID"]; Requires replacement if changed.
config GatewayControlPlaneConfig
CP configuration object for related access endpoints.
description string
The description of the control plane in Konnect.
labels {[key: string]: string}
Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.
name string
The name of the control plane.
proxyUrls GatewayControlPlaneProxyUrl[]
Array of proxy URLs associated with reaching the data-planes connected to a control-plane.
auth_type str
The auth type value of the cluster associated with the Runtime Group. must be one of ["pinnedclientcerts", "pkiclientcerts"]
cloud_gateway bool
Whether this control-plane can be used for cloud-gateways. Requires replacement if changed.
cluster_type str
The ClusterType value of the cluster associated with the Control Plane. must be one of ["CLUSTERTYPECONTROLPLANE", "CLUSTERTYPEK8SINGRESSCONTROLLER", "CLUSTERTYPECONTROLPLANEGROUP", "CLUSTERTYPESERVERLESS", "CLUSTERTYPE_HYBRID"]; Requires replacement if changed.
config GatewayControlPlaneConfigArgs
CP configuration object for related access endpoints.
description str
The description of the control plane in Konnect.
labels Mapping[str, str]
Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.
name str
The name of the control plane.
proxy_urls Sequence[GatewayControlPlaneProxyUrlArgs]
Array of proxy URLs associated with reaching the data-planes connected to a control-plane.
authType String
The auth type value of the cluster associated with the Runtime Group. must be one of ["pinnedclientcerts", "pkiclientcerts"]
cloudGateway Boolean
Whether this control-plane can be used for cloud-gateways. Requires replacement if changed.
clusterType String
The ClusterType value of the cluster associated with the Control Plane. must be one of ["CLUSTERTYPECONTROLPLANE", "CLUSTERTYPEK8SINGRESSCONTROLLER", "CLUSTERTYPECONTROLPLANEGROUP", "CLUSTERTYPESERVERLESS", "CLUSTERTYPE_HYBRID"]; Requires replacement if changed.
config Property Map
CP configuration object for related access endpoints.
description String
The description of the control plane in Konnect.
labels Map<String>
Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types.
name String
The name of the control plane.
proxyUrls List<Property Map>
Array of proxy URLs associated with reaching the data-planes connected to a control-plane.

Supporting Types

GatewayControlPlaneConfig
, GatewayControlPlaneConfigArgs

AuthType string
The auth type value of the cluster associated with the Runtime Group. must be one of ["pinnedclientcerts", "pkiclientcerts"]
CloudGateway bool
Whether the Control Plane can be used for cloud-gateways.
ClusterType string
The ClusterType value of the cluster associated with the Control Plane. must be one of ["CLUSTERTYPECONTROLPLANE", "CLUSTERTYPEK8SINGRESSCONTROLLER", "CLUSTERTYPECONTROLPLANEGROUP", "CLUSTERTYPESERVERLESS", "CLUSTERTYPE_HYBRID"]
ControlPlaneEndpoint string
Control Plane Endpoint.
ProxyUrls List<GatewayControlPlaneConfigProxyUrl>
Array of proxy URLs associated with reaching the data-planes connected to a control-plane.
TelemetryEndpoint string
Telemetry Endpoint.
AuthType string
The auth type value of the cluster associated with the Runtime Group. must be one of ["pinnedclientcerts", "pkiclientcerts"]
CloudGateway bool
Whether the Control Plane can be used for cloud-gateways.
ClusterType string
The ClusterType value of the cluster associated with the Control Plane. must be one of ["CLUSTERTYPECONTROLPLANE", "CLUSTERTYPEK8SINGRESSCONTROLLER", "CLUSTERTYPECONTROLPLANEGROUP", "CLUSTERTYPESERVERLESS", "CLUSTERTYPE_HYBRID"]
ControlPlaneEndpoint string
Control Plane Endpoint.
ProxyUrls []GatewayControlPlaneConfigProxyUrl
Array of proxy URLs associated with reaching the data-planes connected to a control-plane.
TelemetryEndpoint string
Telemetry Endpoint.
authType String
The auth type value of the cluster associated with the Runtime Group. must be one of ["pinnedclientcerts", "pkiclientcerts"]
cloudGateway Boolean
Whether the Control Plane can be used for cloud-gateways.
clusterType String
The ClusterType value of the cluster associated with the Control Plane. must be one of ["CLUSTERTYPECONTROLPLANE", "CLUSTERTYPEK8SINGRESSCONTROLLER", "CLUSTERTYPECONTROLPLANEGROUP", "CLUSTERTYPESERVERLESS", "CLUSTERTYPE_HYBRID"]
controlPlaneEndpoint String
Control Plane Endpoint.
proxyUrls List<GatewayControlPlaneConfigProxyUrl>
Array of proxy URLs associated with reaching the data-planes connected to a control-plane.
telemetryEndpoint String
Telemetry Endpoint.
authType string
The auth type value of the cluster associated with the Runtime Group. must be one of ["pinnedclientcerts", "pkiclientcerts"]
cloudGateway boolean
Whether the Control Plane can be used for cloud-gateways.
clusterType string
The ClusterType value of the cluster associated with the Control Plane. must be one of ["CLUSTERTYPECONTROLPLANE", "CLUSTERTYPEK8SINGRESSCONTROLLER", "CLUSTERTYPECONTROLPLANEGROUP", "CLUSTERTYPESERVERLESS", "CLUSTERTYPE_HYBRID"]
controlPlaneEndpoint string
Control Plane Endpoint.
proxyUrls GatewayControlPlaneConfigProxyUrl[]
Array of proxy URLs associated with reaching the data-planes connected to a control-plane.
telemetryEndpoint string
Telemetry Endpoint.
auth_type str
The auth type value of the cluster associated with the Runtime Group. must be one of ["pinnedclientcerts", "pkiclientcerts"]
cloud_gateway bool
Whether the Control Plane can be used for cloud-gateways.
cluster_type str
The ClusterType value of the cluster associated with the Control Plane. must be one of ["CLUSTERTYPECONTROLPLANE", "CLUSTERTYPEK8SINGRESSCONTROLLER", "CLUSTERTYPECONTROLPLANEGROUP", "CLUSTERTYPESERVERLESS", "CLUSTERTYPE_HYBRID"]
control_plane_endpoint str
Control Plane Endpoint.
proxy_urls Sequence[GatewayControlPlaneConfigProxyUrl]
Array of proxy URLs associated with reaching the data-planes connected to a control-plane.
telemetry_endpoint str
Telemetry Endpoint.
authType String
The auth type value of the cluster associated with the Runtime Group. must be one of ["pinnedclientcerts", "pkiclientcerts"]
cloudGateway Boolean
Whether the Control Plane can be used for cloud-gateways.
clusterType String
The ClusterType value of the cluster associated with the Control Plane. must be one of ["CLUSTERTYPECONTROLPLANE", "CLUSTERTYPEK8SINGRESSCONTROLLER", "CLUSTERTYPECONTROLPLANEGROUP", "CLUSTERTYPESERVERLESS", "CLUSTERTYPE_HYBRID"]
controlPlaneEndpoint String
Control Plane Endpoint.
proxyUrls List<Property Map>
Array of proxy URLs associated with reaching the data-planes connected to a control-plane.
telemetryEndpoint String
Telemetry Endpoint.

GatewayControlPlaneConfigProxyUrl
, GatewayControlPlaneConfigProxyUrlArgs

Host string
Hostname of the proxy URL.
Port double
Port of the proxy URL.
Protocol string
Protocol of the proxy URL.
Host string
Hostname of the proxy URL.
Port float64
Port of the proxy URL.
Protocol string
Protocol of the proxy URL.
host String
Hostname of the proxy URL.
port Double
Port of the proxy URL.
protocol String
Protocol of the proxy URL.
host string
Hostname of the proxy URL.
port number
Port of the proxy URL.
protocol string
Protocol of the proxy URL.
host str
Hostname of the proxy URL.
port float
Port of the proxy URL.
protocol str
Protocol of the proxy URL.
host String
Hostname of the proxy URL.
port Number
Port of the proxy URL.
protocol String
Protocol of the proxy URL.

GatewayControlPlaneProxyUrl
, GatewayControlPlaneProxyUrlArgs

Host This property is required. string
Hostname of the proxy URL.
Port This property is required. double
Port of the proxy URL.
Protocol This property is required. string
Protocol of the proxy URL.
Host This property is required. string
Hostname of the proxy URL.
Port This property is required. float64
Port of the proxy URL.
Protocol This property is required. string
Protocol of the proxy URL.
host This property is required. String
Hostname of the proxy URL.
port This property is required. Double
Port of the proxy URL.
protocol This property is required. String
Protocol of the proxy URL.
host This property is required. string
Hostname of the proxy URL.
port This property is required. number
Port of the proxy URL.
protocol This property is required. string
Protocol of the proxy URL.
host This property is required. str
Hostname of the proxy URL.
port This property is required. float
Port of the proxy URL.
protocol This property is required. str
Protocol of the proxy URL.
host This property is required. String
Hostname of the proxy URL.
port This property is required. Number
Port of the proxy URL.
protocol This property is required. String
Protocol of the proxy URL.

Import

$ pulumi import konnect:index/gatewayControlPlane:GatewayControlPlane my_konnect_gateway_control_plane "d32d905a-ed33-46a3-a093-d8f536af9a8a"
Copy

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

Package Details

Repository
konnect kong/terraform-provider-konnect
License
Notes
This Pulumi package is based on the konnect Terraform Provider.