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...",
}],
});
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...",
}])
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
})
}
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...",
},
},
});
});
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());
}
}
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...'
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 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 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 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 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 String
- The unique name of the resource.
- args 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",
},
},
});
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: .GatewayControlPlaneProxyUrlArray{
&.GatewayControlPlaneProxyUrlArgs{
Host: pulumi.String("string"),
Port: pulumi.Float64(0),
Protocol: pulumi.String("string"),
},
},
})
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());
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",
}])
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",
}],
});
type: konnect:GatewayControlPlane
properties:
authType: string
cloudGateway: false
clusterType: string
description: string
labels:
string: string
name: string
proxyUrls:
- host: string
port: 0
protocol: string
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:
- Auth
Type string - 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 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.
- Proxy
Urls List<GatewayControl Plane Proxy Url> - Array of proxy URLs associated with reaching the data-planes connected to a control-plane.
- Auth
Type string - 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 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.
- Proxy
Urls []GatewayControl Plane Proxy Url Args - Array of proxy URLs associated with reaching the data-planes connected to a control-plane.
- auth
Type String - The auth type value of the cluster associated with the Runtime Group. must be one of ["pinnedclientcerts", "pkiclientcerts"]
- cloud
Gateway Boolean - Whether this control-plane can be used for cloud-gateways. Requires replacement if changed.
- cluster
Type 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.
- proxy
Urls List<GatewayControl Plane Proxy Url> - Array of proxy URLs associated with reaching the data-planes connected to a control-plane.
- auth
Type string - The auth type value of the cluster associated with the Runtime Group. must be one of ["pinnedclientcerts", "pkiclientcerts"]
- cloud
Gateway boolean - Whether this control-plane can be used for cloud-gateways. Requires replacement if changed.
- cluster
Type 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.
- proxy
Urls GatewayControl Plane Proxy Url[] - 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[GatewayControl Plane Proxy Url Args] - Array of proxy URLs associated with reaching the data-planes connected to a control-plane.
- auth
Type String - The auth type value of the cluster associated with the Runtime Group. must be one of ["pinnedclientcerts", "pkiclientcerts"]
- cloud
Gateway Boolean - Whether this control-plane can be used for cloud-gateways. Requires replacement if changed.
- cluster
Type 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.
- proxy
Urls 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
Gateway
Control Plane Config - CP configuration object for related access endpoints.
- Id string
- The provider-assigned unique ID for this managed resource.
- Config
Gateway
Control Plane Config - CP configuration object for related access endpoints.
- Id string
- The provider-assigned unique ID for this managed resource.
- config
Gateway
Control Plane Config - CP configuration object for related access endpoints.
- id String
- The provider-assigned unique ID for this managed resource.
- config
Gateway
Control Plane Config - CP configuration object for related access endpoints.
- id string
- The provider-assigned unique ID for this managed resource.
- config
Gateway
Control Plane Config - 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
- 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.
- Auth
Type string - 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 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
Gateway
Control Plane Config - 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.
- Proxy
Urls List<GatewayControl Plane Proxy Url> - Array of proxy URLs associated with reaching the data-planes connected to a control-plane.
- Auth
Type string - 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 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
Gateway
Control Plane Config Args - 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.
- Proxy
Urls []GatewayControl Plane Proxy Url Args - Array of proxy URLs associated with reaching the data-planes connected to a control-plane.
- auth
Type String - The auth type value of the cluster associated with the Runtime Group. must be one of ["pinnedclientcerts", "pkiclientcerts"]
- cloud
Gateway Boolean - Whether this control-plane can be used for cloud-gateways. Requires replacement if changed.
- cluster
Type 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
Gateway
Control Plane Config - 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.
- proxy
Urls List<GatewayControl Plane Proxy Url> - Array of proxy URLs associated with reaching the data-planes connected to a control-plane.
- auth
Type string - The auth type value of the cluster associated with the Runtime Group. must be one of ["pinnedclientcerts", "pkiclientcerts"]
- cloud
Gateway boolean - Whether this control-plane can be used for cloud-gateways. Requires replacement if changed.
- cluster
Type 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
Gateway
Control Plane Config - 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.
- proxy
Urls GatewayControl Plane Proxy Url[] - 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
Gateway
Control Plane Config Args - 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[GatewayControl Plane Proxy Url Args] - Array of proxy URLs associated with reaching the data-planes connected to a control-plane.
- auth
Type String - The auth type value of the cluster associated with the Runtime Group. must be one of ["pinnedclientcerts", "pkiclientcerts"]
- cloud
Gateway Boolean - Whether this control-plane can be used for cloud-gateways. Requires replacement if changed.
- cluster
Type 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.
- proxy
Urls List<Property Map> - Array of proxy URLs associated with reaching the data-planes connected to a control-plane.
Supporting Types
GatewayControlPlaneConfig, GatewayControlPlaneConfigArgs
- Auth
Type string - 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 string - The ClusterType value of the cluster associated with the Control Plane. must be one of ["CLUSTERTYPECONTROLPLANE", "CLUSTERTYPEK8SINGRESSCONTROLLER", "CLUSTERTYPECONTROLPLANEGROUP", "CLUSTERTYPESERVERLESS", "CLUSTERTYPE_HYBRID"]
- Control
Plane stringEndpoint - Control Plane Endpoint.
- Proxy
Urls List<GatewayControl Plane Config Proxy Url> - Array of proxy URLs associated with reaching the data-planes connected to a control-plane.
- Telemetry
Endpoint string - Telemetry Endpoint.
- Auth
Type string - 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 string - The ClusterType value of the cluster associated with the Control Plane. must be one of ["CLUSTERTYPECONTROLPLANE", "CLUSTERTYPEK8SINGRESSCONTROLLER", "CLUSTERTYPECONTROLPLANEGROUP", "CLUSTERTYPESERVERLESS", "CLUSTERTYPE_HYBRID"]
- Control
Plane stringEndpoint - Control Plane Endpoint.
- Proxy
Urls []GatewayControl Plane Config Proxy Url - Array of proxy URLs associated with reaching the data-planes connected to a control-plane.
- Telemetry
Endpoint string - Telemetry Endpoint.
- auth
Type String - The auth type value of the cluster associated with the Runtime Group. must be one of ["pinnedclientcerts", "pkiclientcerts"]
- cloud
Gateway Boolean - Whether the Control Plane can be used for cloud-gateways.
- cluster
Type String - The ClusterType value of the cluster associated with the Control Plane. must be one of ["CLUSTERTYPECONTROLPLANE", "CLUSTERTYPEK8SINGRESSCONTROLLER", "CLUSTERTYPECONTROLPLANEGROUP", "CLUSTERTYPESERVERLESS", "CLUSTERTYPE_HYBRID"]
- control
Plane StringEndpoint - Control Plane Endpoint.
- proxy
Urls List<GatewayControl Plane Config Proxy Url> - Array of proxy URLs associated with reaching the data-planes connected to a control-plane.
- telemetry
Endpoint String - Telemetry Endpoint.
- auth
Type string - The auth type value of the cluster associated with the Runtime Group. must be one of ["pinnedclientcerts", "pkiclientcerts"]
- cloud
Gateway boolean - Whether the Control Plane can be used for cloud-gateways.
- cluster
Type string - The ClusterType value of the cluster associated with the Control Plane. must be one of ["CLUSTERTYPECONTROLPLANE", "CLUSTERTYPEK8SINGRESSCONTROLLER", "CLUSTERTYPECONTROLPLANEGROUP", "CLUSTERTYPESERVERLESS", "CLUSTERTYPE_HYBRID"]
- control
Plane stringEndpoint - Control Plane Endpoint.
- proxy
Urls GatewayControl Plane Config Proxy Url[] - Array of proxy URLs associated with reaching the data-planes connected to a control-plane.
- telemetry
Endpoint 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_ strendpoint - Control Plane Endpoint.
- proxy_
urls Sequence[GatewayControl Plane Config Proxy Url] - Array of proxy URLs associated with reaching the data-planes connected to a control-plane.
- telemetry_
endpoint str - Telemetry Endpoint.
- auth
Type String - The auth type value of the cluster associated with the Runtime Group. must be one of ["pinnedclientcerts", "pkiclientcerts"]
- cloud
Gateway Boolean - Whether the Control Plane can be used for cloud-gateways.
- cluster
Type String - The ClusterType value of the cluster associated with the Control Plane. must be one of ["CLUSTERTYPECONTROLPLANE", "CLUSTERTYPEK8SINGRESSCONTROLLER", "CLUSTERTYPECONTROLPLANEGROUP", "CLUSTERTYPESERVERLESS", "CLUSTERTYPE_HYBRID"]
- control
Plane StringEndpoint - Control Plane Endpoint.
- proxy
Urls List<Property Map> - Array of proxy URLs associated with reaching the data-planes connected to a control-plane.
- telemetry
Endpoint String - Telemetry Endpoint.
GatewayControlPlaneConfigProxyUrl, GatewayControlPlaneConfigProxyUrlArgs
GatewayControlPlaneProxyUrl, GatewayControlPlaneProxyUrlArgs
Import
$ pulumi import konnect:index/gatewayControlPlane:GatewayControlPlane my_konnect_gateway_control_plane "d32d905a-ed33-46a3-a093-d8f536af9a8a"
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.