konnect.CloudGatewayConfiguration
Explore with Pulumi AI
CloudGatewayConfiguration Resource
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as konnect from "@pulumi/konnect";
const myCloudgatewayconfiguration = new konnect.CloudGatewayConfiguration("myCloudgatewayconfiguration", {
apiAccess: "public",
controlPlaneGeo: "us",
controlPlaneId: "0949471e-b759-45ba-87ab-ee63fb781388",
dataplaneGroups: [{
autoscale: {
configurationDataPlaneGroupAutoscaleStatic: {
instanceType: "medium",
kind: "static",
requestedInstances: 3,
},
},
cloudGatewayNetworkId: "36ae63d3-efd1-4bec-b246-62aa5d3f5695",
environments: [{
name: "KONG_LOG_LEVEL",
value: "INFO",
}],
provider: "aws",
region: "us-east-2",
}],
version: "3.2",
});
import pulumi
import pulumi_konnect as konnect
my_cloudgatewayconfiguration = konnect.CloudGatewayConfiguration("myCloudgatewayconfiguration",
api_access="public",
control_plane_geo="us",
control_plane_id="0949471e-b759-45ba-87ab-ee63fb781388",
dataplane_groups=[{
"autoscale": {
"configuration_data_plane_group_autoscale_static": {
"instance_type": "medium",
"kind": "static",
"requested_instances": 3,
},
},
"cloud_gateway_network_id": "36ae63d3-efd1-4bec-b246-62aa5d3f5695",
"environments": [{
"name": "KONG_LOG_LEVEL",
"value": "INFO",
}],
"provider": "aws",
"region": "us-east-2",
}],
version="3.2")
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.NewCloudGatewayConfiguration(ctx, "myCloudgatewayconfiguration", &konnect.CloudGatewayConfigurationArgs{
ApiAccess: pulumi.String("public"),
ControlPlaneGeo: pulumi.String("us"),
ControlPlaneId: pulumi.String("0949471e-b759-45ba-87ab-ee63fb781388"),
DataplaneGroups: konnect.CloudGatewayConfigurationDataplaneGroupArray{
&konnect.CloudGatewayConfigurationDataplaneGroupArgs{
Autoscale: &konnect.CloudGatewayConfigurationDataplaneGroupAutoscaleArgs{
ConfigurationDataPlaneGroupAutoscaleStatic: &konnect.CloudGatewayConfigurationDataplaneGroupAutoscaleConfigurationDataPlaneGroupAutoscaleStaticArgs{
InstanceType: pulumi.String("medium"),
Kind: pulumi.String("static"),
RequestedInstances: pulumi.Float64(3),
},
},
CloudGatewayNetworkId: pulumi.String("36ae63d3-efd1-4bec-b246-62aa5d3f5695"),
Environments: konnect.CloudGatewayConfigurationDataplaneGroupEnvironmentArray{
&konnect.CloudGatewayConfigurationDataplaneGroupEnvironmentArgs{
Name: pulumi.String("KONG_LOG_LEVEL"),
Value: pulumi.String("INFO"),
},
},
Provider: pulumi.String("aws"),
Region: pulumi.String("us-east-2"),
},
},
Version: pulumi.String("3.2"),
})
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 myCloudgatewayconfiguration = new Konnect.CloudGatewayConfiguration("myCloudgatewayconfiguration", new()
{
ApiAccess = "public",
ControlPlaneGeo = "us",
ControlPlaneId = "0949471e-b759-45ba-87ab-ee63fb781388",
DataplaneGroups = new[]
{
new Konnect.Inputs.CloudGatewayConfigurationDataplaneGroupArgs
{
Autoscale = new Konnect.Inputs.CloudGatewayConfigurationDataplaneGroupAutoscaleArgs
{
ConfigurationDataPlaneGroupAutoscaleStatic = new Konnect.Inputs.CloudGatewayConfigurationDataplaneGroupAutoscaleConfigurationDataPlaneGroupAutoscaleStaticArgs
{
InstanceType = "medium",
Kind = "static",
RequestedInstances = 3,
},
},
CloudGatewayNetworkId = "36ae63d3-efd1-4bec-b246-62aa5d3f5695",
Environments = new[]
{
new Konnect.Inputs.CloudGatewayConfigurationDataplaneGroupEnvironmentArgs
{
Name = "KONG_LOG_LEVEL",
Value = "INFO",
},
},
Provider = "aws",
Region = "us-east-2",
},
},
Version = "3.2",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.konnect.CloudGatewayConfiguration;
import com.pulumi.konnect.CloudGatewayConfigurationArgs;
import com.pulumi.konnect.inputs.CloudGatewayConfigurationDataplaneGroupArgs;
import com.pulumi.konnect.inputs.CloudGatewayConfigurationDataplaneGroupAutoscaleArgs;
import com.pulumi.konnect.inputs.CloudGatewayConfigurationDataplaneGroupAutoscaleConfigurationDataPlaneGroupAutoscaleStaticArgs;
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 myCloudgatewayconfiguration = new CloudGatewayConfiguration("myCloudgatewayconfiguration", CloudGatewayConfigurationArgs.builder()
.apiAccess("public")
.controlPlaneGeo("us")
.controlPlaneId("0949471e-b759-45ba-87ab-ee63fb781388")
.dataplaneGroups(CloudGatewayConfigurationDataplaneGroupArgs.builder()
.autoscale(CloudGatewayConfigurationDataplaneGroupAutoscaleArgs.builder()
.configurationDataPlaneGroupAutoscaleStatic(CloudGatewayConfigurationDataplaneGroupAutoscaleConfigurationDataPlaneGroupAutoscaleStaticArgs.builder()
.instanceType("medium")
.kind("static")
.requestedInstances(3)
.build())
.build())
.cloudGatewayNetworkId("36ae63d3-efd1-4bec-b246-62aa5d3f5695")
.environments(CloudGatewayConfigurationDataplaneGroupEnvironmentArgs.builder()
.name("KONG_LOG_LEVEL")
.value("INFO")
.build())
.provider("aws")
.region("us-east-2")
.build())
.version("3.2")
.build());
}
}
resources:
myCloudgatewayconfiguration:
type: konnect:CloudGatewayConfiguration
properties:
apiAccess: public
controlPlaneGeo: us
controlPlaneId: 0949471e-b759-45ba-87ab-ee63fb781388
dataplaneGroups:
- autoscale:
configurationDataPlaneGroupAutoscaleStatic:
instanceType: medium
kind: static
requestedInstances: 3
cloudGatewayNetworkId: 36ae63d3-efd1-4bec-b246-62aa5d3f5695
environments:
- name: KONG_LOG_LEVEL
value: INFO
provider: aws
region: us-east-2
version: '3.2'
Create CloudGatewayConfiguration Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new CloudGatewayConfiguration(name: string, args: CloudGatewayConfigurationArgs, opts?: CustomResourceOptions);
@overload
def CloudGatewayConfiguration(resource_name: str,
args: CloudGatewayConfigurationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def CloudGatewayConfiguration(resource_name: str,
opts: Optional[ResourceOptions] = None,
control_plane_geo: Optional[str] = None,
control_plane_id: Optional[str] = None,
dataplane_groups: Optional[Sequence[CloudGatewayConfigurationDataplaneGroupArgs]] = None,
version: Optional[str] = None,
api_access: Optional[str] = None)
func NewCloudGatewayConfiguration(ctx *Context, name string, args CloudGatewayConfigurationArgs, opts ...ResourceOption) (*CloudGatewayConfiguration, error)
public CloudGatewayConfiguration(string name, CloudGatewayConfigurationArgs args, CustomResourceOptions? opts = null)
public CloudGatewayConfiguration(String name, CloudGatewayConfigurationArgs args)
public CloudGatewayConfiguration(String name, CloudGatewayConfigurationArgs args, CustomResourceOptions options)
type: konnect:CloudGatewayConfiguration
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 CloudGatewayConfigurationArgs
- 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 CloudGatewayConfigurationArgs
- 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 CloudGatewayConfigurationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CloudGatewayConfigurationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CloudGatewayConfigurationArgs
- 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 cloudGatewayConfigurationResource = new Konnect.CloudGatewayConfiguration("cloudGatewayConfigurationResource", new()
{
ControlPlaneGeo = "string",
ControlPlaneId = "string",
DataplaneGroups = new[]
{
new Konnect.Inputs.CloudGatewayConfigurationDataplaneGroupArgs
{
Autoscale = new Konnect.Inputs.CloudGatewayConfigurationDataplaneGroupAutoscaleArgs
{
ConfigurationDataPlaneGroupAutoscaleAutopilot = new Konnect.Inputs.CloudGatewayConfigurationDataplaneGroupAutoscaleConfigurationDataPlaneGroupAutoscaleAutopilotArgs
{
BaseRps = 0,
Kind = "string",
MaxRps = 0,
},
ConfigurationDataPlaneGroupAutoscaleStatic = new Konnect.Inputs.CloudGatewayConfigurationDataplaneGroupAutoscaleConfigurationDataPlaneGroupAutoscaleStaticArgs
{
InstanceType = "string",
Kind = "string",
RequestedInstances = 0,
},
},
CloudGatewayNetworkId = "string",
CreatedAt = "string",
EgressIpAddresses = new[]
{
"string",
},
Environments = new[]
{
new Konnect.Inputs.CloudGatewayConfigurationDataplaneGroupEnvironmentArgs
{
Name = "string",
Value = "string",
},
},
Id = "string",
PrivateIpAddresses = new[]
{
"string",
},
Provider = "string",
Region = "string",
State = "string",
UpdatedAt = "string",
},
},
Version = "string",
ApiAccess = "string",
});
example, err := konnect.NewCloudGatewayConfiguration(ctx, "cloudGatewayConfigurationResource", &konnect.CloudGatewayConfigurationArgs{
ControlPlaneGeo: pulumi.String("string"),
ControlPlaneId: pulumi.String("string"),
DataplaneGroups: .CloudGatewayConfigurationDataplaneGroupArray{
&.CloudGatewayConfigurationDataplaneGroupArgs{
Autoscale: &.CloudGatewayConfigurationDataplaneGroupAutoscaleArgs{
ConfigurationDataPlaneGroupAutoscaleAutopilot: &.CloudGatewayConfigurationDataplaneGroupAutoscaleConfigurationDataPlaneGroupAutoscaleAutopilotArgs{
BaseRps: pulumi.Float64(0),
Kind: pulumi.String("string"),
MaxRps: pulumi.Float64(0),
},
ConfigurationDataPlaneGroupAutoscaleStatic: &.CloudGatewayConfigurationDataplaneGroupAutoscaleConfigurationDataPlaneGroupAutoscaleStaticArgs{
InstanceType: pulumi.String("string"),
Kind: pulumi.String("string"),
RequestedInstances: pulumi.Float64(0),
},
},
CloudGatewayNetworkId: pulumi.String("string"),
CreatedAt: pulumi.String("string"),
EgressIpAddresses: pulumi.StringArray{
pulumi.String("string"),
},
Environments: .CloudGatewayConfigurationDataplaneGroupEnvironmentArray{
&.CloudGatewayConfigurationDataplaneGroupEnvironmentArgs{
Name: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
Id: pulumi.String("string"),
PrivateIpAddresses: pulumi.StringArray{
pulumi.String("string"),
},
Provider: pulumi.String("string"),
Region: pulumi.String("string"),
State: pulumi.String("string"),
UpdatedAt: pulumi.String("string"),
},
},
Version: pulumi.String("string"),
ApiAccess: pulumi.String("string"),
})
var cloudGatewayConfigurationResource = new CloudGatewayConfiguration("cloudGatewayConfigurationResource", CloudGatewayConfigurationArgs.builder()
.controlPlaneGeo("string")
.controlPlaneId("string")
.dataplaneGroups(CloudGatewayConfigurationDataplaneGroupArgs.builder()
.autoscale(CloudGatewayConfigurationDataplaneGroupAutoscaleArgs.builder()
.configurationDataPlaneGroupAutoscaleAutopilot(CloudGatewayConfigurationDataplaneGroupAutoscaleConfigurationDataPlaneGroupAutoscaleAutopilotArgs.builder()
.baseRps(0)
.kind("string")
.maxRps(0)
.build())
.configurationDataPlaneGroupAutoscaleStatic(CloudGatewayConfigurationDataplaneGroupAutoscaleConfigurationDataPlaneGroupAutoscaleStaticArgs.builder()
.instanceType("string")
.kind("string")
.requestedInstances(0)
.build())
.build())
.cloudGatewayNetworkId("string")
.createdAt("string")
.egressIpAddresses("string")
.environments(CloudGatewayConfigurationDataplaneGroupEnvironmentArgs.builder()
.name("string")
.value("string")
.build())
.id("string")
.privateIpAddresses("string")
.provider("string")
.region("string")
.state("string")
.updatedAt("string")
.build())
.version("string")
.apiAccess("string")
.build());
cloud_gateway_configuration_resource = konnect.CloudGatewayConfiguration("cloudGatewayConfigurationResource",
control_plane_geo="string",
control_plane_id="string",
dataplane_groups=[{
"autoscale": {
"configuration_data_plane_group_autoscale_autopilot": {
"base_rps": 0,
"kind": "string",
"max_rps": 0,
},
"configuration_data_plane_group_autoscale_static": {
"instance_type": "string",
"kind": "string",
"requested_instances": 0,
},
},
"cloud_gateway_network_id": "string",
"created_at": "string",
"egress_ip_addresses": ["string"],
"environments": [{
"name": "string",
"value": "string",
}],
"id": "string",
"private_ip_addresses": ["string"],
"provider": "string",
"region": "string",
"state": "string",
"updated_at": "string",
}],
version="string",
api_access="string")
const cloudGatewayConfigurationResource = new konnect.CloudGatewayConfiguration("cloudGatewayConfigurationResource", {
controlPlaneGeo: "string",
controlPlaneId: "string",
dataplaneGroups: [{
autoscale: {
configurationDataPlaneGroupAutoscaleAutopilot: {
baseRps: 0,
kind: "string",
maxRps: 0,
},
configurationDataPlaneGroupAutoscaleStatic: {
instanceType: "string",
kind: "string",
requestedInstances: 0,
},
},
cloudGatewayNetworkId: "string",
createdAt: "string",
egressIpAddresses: ["string"],
environments: [{
name: "string",
value: "string",
}],
id: "string",
privateIpAddresses: ["string"],
provider: "string",
region: "string",
state: "string",
updatedAt: "string",
}],
version: "string",
apiAccess: "string",
});
type: konnect:CloudGatewayConfiguration
properties:
apiAccess: string
controlPlaneGeo: string
controlPlaneId: string
dataplaneGroups:
- autoscale:
configurationDataPlaneGroupAutoscaleAutopilot:
baseRps: 0
kind: string
maxRps: 0
configurationDataPlaneGroupAutoscaleStatic:
instanceType: string
kind: string
requestedInstances: 0
cloudGatewayNetworkId: string
createdAt: string
egressIpAddresses:
- string
environments:
- name: string
value: string
id: string
privateIpAddresses:
- string
provider: string
region: string
state: string
updatedAt: string
version: string
CloudGatewayConfiguration 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 CloudGatewayConfiguration resource accepts the following input properties:
- Control
Plane stringGeo - Set of control-plane geos supported for deploying cloud-gateways configurations. must be one of ["us", "eu", "au", "me", "in"]
- Control
Plane stringId - Dataplane
Groups List<CloudGateway Configuration Dataplane Group> - List of data-plane groups that describe where to deploy instances, along with how many instances.
- Version string
- Supported gateway version.
- Api
Access string - Type of API access data-plane groups will support for a configuration. Default: "private+public"; must be one of ["private", "public", "private+public"]
- Control
Plane stringGeo - Set of control-plane geos supported for deploying cloud-gateways configurations. must be one of ["us", "eu", "au", "me", "in"]
- Control
Plane stringId - Dataplane
Groups []CloudGateway Configuration Dataplane Group Args - List of data-plane groups that describe where to deploy instances, along with how many instances.
- Version string
- Supported gateway version.
- Api
Access string - Type of API access data-plane groups will support for a configuration. Default: "private+public"; must be one of ["private", "public", "private+public"]
- control
Plane StringGeo - Set of control-plane geos supported for deploying cloud-gateways configurations. must be one of ["us", "eu", "au", "me", "in"]
- control
Plane StringId - dataplane
Groups List<CloudGateway Configuration Dataplane Group> - List of data-plane groups that describe where to deploy instances, along with how many instances.
- version String
- Supported gateway version.
- api
Access String - Type of API access data-plane groups will support for a configuration. Default: "private+public"; must be one of ["private", "public", "private+public"]
- control
Plane stringGeo - Set of control-plane geos supported for deploying cloud-gateways configurations. must be one of ["us", "eu", "au", "me", "in"]
- control
Plane stringId - dataplane
Groups CloudGateway Configuration Dataplane Group[] - List of data-plane groups that describe where to deploy instances, along with how many instances.
- version string
- Supported gateway version.
- api
Access string - Type of API access data-plane groups will support for a configuration. Default: "private+public"; must be one of ["private", "public", "private+public"]
- control_
plane_ strgeo - Set of control-plane geos supported for deploying cloud-gateways configurations. must be one of ["us", "eu", "au", "me", "in"]
- control_
plane_ strid - dataplane_
groups Sequence[CloudGateway Configuration Dataplane Group Args] - List of data-plane groups that describe where to deploy instances, along with how many instances.
- version str
- Supported gateway version.
- api_
access str - Type of API access data-plane groups will support for a configuration. Default: "private+public"; must be one of ["private", "public", "private+public"]
- control
Plane StringGeo - Set of control-plane geos supported for deploying cloud-gateways configurations. must be one of ["us", "eu", "au", "me", "in"]
- control
Plane StringId - dataplane
Groups List<Property Map> - List of data-plane groups that describe where to deploy instances, along with how many instances.
- version String
- Supported gateway version.
- api
Access String - Type of API access data-plane groups will support for a configuration. Default: "private+public"; must be one of ["private", "public", "private+public"]
Outputs
All input properties are implicitly available as output properties. Additionally, the CloudGatewayConfiguration resource produces the following output properties:
- Created
At string - An RFC-3339 timestamp representation of configuration creation date.
- Dataplane
Group List<CloudConfigs Gateway Configuration Dataplane Group Config> - Object that describes where data-planes will be deployed to, along with how many instances.
- Entity
Version double - Positive, monotonically increasing version integer, to serialize configuration changes.
- Id string
- The provider-assigned unique ID for this managed resource.
- Updated
At string - An RFC-3339 timestamp representation of configuration update date.
- Created
At string - An RFC-3339 timestamp representation of configuration creation date.
- Dataplane
Group []CloudConfigs Gateway Configuration Dataplane Group Config - Object that describes where data-planes will be deployed to, along with how many instances.
- Entity
Version float64 - Positive, monotonically increasing version integer, to serialize configuration changes.
- Id string
- The provider-assigned unique ID for this managed resource.
- Updated
At string - An RFC-3339 timestamp representation of configuration update date.
- created
At String - An RFC-3339 timestamp representation of configuration creation date.
- dataplane
Group List<CloudConfigs Gateway Configuration Dataplane Group Config> - Object that describes where data-planes will be deployed to, along with how many instances.
- entity
Version Double - Positive, monotonically increasing version integer, to serialize configuration changes.
- id String
- The provider-assigned unique ID for this managed resource.
- updated
At String - An RFC-3339 timestamp representation of configuration update date.
- created
At string - An RFC-3339 timestamp representation of configuration creation date.
- dataplane
Group CloudConfigs Gateway Configuration Dataplane Group Config[] - Object that describes where data-planes will be deployed to, along with how many instances.
- entity
Version number - Positive, monotonically increasing version integer, to serialize configuration changes.
- id string
- The provider-assigned unique ID for this managed resource.
- updated
At string - An RFC-3339 timestamp representation of configuration update date.
- created_
at str - An RFC-3339 timestamp representation of configuration creation date.
- dataplane_
group_ Sequence[Cloudconfigs Gateway Configuration Dataplane Group Config] - Object that describes where data-planes will be deployed to, along with how many instances.
- entity_
version float - Positive, monotonically increasing version integer, to serialize configuration changes.
- id str
- The provider-assigned unique ID for this managed resource.
- updated_
at str - An RFC-3339 timestamp representation of configuration update date.
- created
At String - An RFC-3339 timestamp representation of configuration creation date.
- dataplane
Group List<Property Map>Configs - Object that describes where data-planes will be deployed to, along with how many instances.
- entity
Version Number - Positive, monotonically increasing version integer, to serialize configuration changes.
- id String
- The provider-assigned unique ID for this managed resource.
- updated
At String - An RFC-3339 timestamp representation of configuration update date.
Look up Existing CloudGatewayConfiguration Resource
Get an existing CloudGatewayConfiguration 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?: CloudGatewayConfigurationState, opts?: CustomResourceOptions): CloudGatewayConfiguration
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
api_access: Optional[str] = None,
control_plane_geo: Optional[str] = None,
control_plane_id: Optional[str] = None,
created_at: Optional[str] = None,
dataplane_group_configs: Optional[Sequence[CloudGatewayConfigurationDataplaneGroupConfigArgs]] = None,
dataplane_groups: Optional[Sequence[CloudGatewayConfigurationDataplaneGroupArgs]] = None,
entity_version: Optional[float] = None,
updated_at: Optional[str] = None,
version: Optional[str] = None) -> CloudGatewayConfiguration
func GetCloudGatewayConfiguration(ctx *Context, name string, id IDInput, state *CloudGatewayConfigurationState, opts ...ResourceOption) (*CloudGatewayConfiguration, error)
public static CloudGatewayConfiguration Get(string name, Input<string> id, CloudGatewayConfigurationState? state, CustomResourceOptions? opts = null)
public static CloudGatewayConfiguration get(String name, Output<String> id, CloudGatewayConfigurationState state, CustomResourceOptions options)
resources: _: type: konnect:CloudGatewayConfiguration 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.
- Api
Access string - Type of API access data-plane groups will support for a configuration. Default: "private+public"; must be one of ["private", "public", "private+public"]
- Control
Plane stringGeo - Set of control-plane geos supported for deploying cloud-gateways configurations. must be one of ["us", "eu", "au", "me", "in"]
- Control
Plane stringId - Created
At string - An RFC-3339 timestamp representation of configuration creation date.
- Dataplane
Group List<CloudConfigs Gateway Configuration Dataplane Group Config> - Object that describes where data-planes will be deployed to, along with how many instances.
- Dataplane
Groups List<CloudGateway Configuration Dataplane Group> - List of data-plane groups that describe where to deploy instances, along with how many instances.
- Entity
Version double - Positive, monotonically increasing version integer, to serialize configuration changes.
- Updated
At string - An RFC-3339 timestamp representation of configuration update date.
- Version string
- Supported gateway version.
- Api
Access string - Type of API access data-plane groups will support for a configuration. Default: "private+public"; must be one of ["private", "public", "private+public"]
- Control
Plane stringGeo - Set of control-plane geos supported for deploying cloud-gateways configurations. must be one of ["us", "eu", "au", "me", "in"]
- Control
Plane stringId - Created
At string - An RFC-3339 timestamp representation of configuration creation date.
- Dataplane
Group []CloudConfigs Gateway Configuration Dataplane Group Config Args - Object that describes where data-planes will be deployed to, along with how many instances.
- Dataplane
Groups []CloudGateway Configuration Dataplane Group Args - List of data-plane groups that describe where to deploy instances, along with how many instances.
- Entity
Version float64 - Positive, monotonically increasing version integer, to serialize configuration changes.
- Updated
At string - An RFC-3339 timestamp representation of configuration update date.
- Version string
- Supported gateway version.
- api
Access String - Type of API access data-plane groups will support for a configuration. Default: "private+public"; must be one of ["private", "public", "private+public"]
- control
Plane StringGeo - Set of control-plane geos supported for deploying cloud-gateways configurations. must be one of ["us", "eu", "au", "me", "in"]
- control
Plane StringId - created
At String - An RFC-3339 timestamp representation of configuration creation date.
- dataplane
Group List<CloudConfigs Gateway Configuration Dataplane Group Config> - Object that describes where data-planes will be deployed to, along with how many instances.
- dataplane
Groups List<CloudGateway Configuration Dataplane Group> - List of data-plane groups that describe where to deploy instances, along with how many instances.
- entity
Version Double - Positive, monotonically increasing version integer, to serialize configuration changes.
- updated
At String - An RFC-3339 timestamp representation of configuration update date.
- version String
- Supported gateway version.
- api
Access string - Type of API access data-plane groups will support for a configuration. Default: "private+public"; must be one of ["private", "public", "private+public"]
- control
Plane stringGeo - Set of control-plane geos supported for deploying cloud-gateways configurations. must be one of ["us", "eu", "au", "me", "in"]
- control
Plane stringId - created
At string - An RFC-3339 timestamp representation of configuration creation date.
- dataplane
Group CloudConfigs Gateway Configuration Dataplane Group Config[] - Object that describes where data-planes will be deployed to, along with how many instances.
- dataplane
Groups CloudGateway Configuration Dataplane Group[] - List of data-plane groups that describe where to deploy instances, along with how many instances.
- entity
Version number - Positive, monotonically increasing version integer, to serialize configuration changes.
- updated
At string - An RFC-3339 timestamp representation of configuration update date.
- version string
- Supported gateway version.
- api_
access str - Type of API access data-plane groups will support for a configuration. Default: "private+public"; must be one of ["private", "public", "private+public"]
- control_
plane_ strgeo - Set of control-plane geos supported for deploying cloud-gateways configurations. must be one of ["us", "eu", "au", "me", "in"]
- control_
plane_ strid - created_
at str - An RFC-3339 timestamp representation of configuration creation date.
- dataplane_
group_ Sequence[Cloudconfigs Gateway Configuration Dataplane Group Config Args] - Object that describes where data-planes will be deployed to, along with how many instances.
- dataplane_
groups Sequence[CloudGateway Configuration Dataplane Group Args] - List of data-plane groups that describe where to deploy instances, along with how many instances.
- entity_
version float - Positive, monotonically increasing version integer, to serialize configuration changes.
- updated_
at str - An RFC-3339 timestamp representation of configuration update date.
- version str
- Supported gateway version.
- api
Access String - Type of API access data-plane groups will support for a configuration. Default: "private+public"; must be one of ["private", "public", "private+public"]
- control
Plane StringGeo - Set of control-plane geos supported for deploying cloud-gateways configurations. must be one of ["us", "eu", "au", "me", "in"]
- control
Plane StringId - created
At String - An RFC-3339 timestamp representation of configuration creation date.
- dataplane
Group List<Property Map>Configs - Object that describes where data-planes will be deployed to, along with how many instances.
- dataplane
Groups List<Property Map> - List of data-plane groups that describe where to deploy instances, along with how many instances.
- entity
Version Number - Positive, monotonically increasing version integer, to serialize configuration changes.
- updated
At String - An RFC-3339 timestamp representation of configuration update date.
- version String
- Supported gateway version.
Supporting Types
CloudGatewayConfigurationDataplaneGroup, CloudGatewayConfigurationDataplaneGroupArgs
- Autoscale
Cloud
Gateway Configuration Dataplane Group Autoscale - Not Null
- Cloud
Gateway stringNetwork Id - Not Null
- Created
At string - An RFC-3339 timestamp representation of data-plane group creation date.
- Egress
Ip List<string>Addresses - List of egress IP addresses for the network that this data-plane group runs on.
- Environments
List<Cloud
Gateway Configuration Dataplane Group Environment> - Array of environment variables to set for a data-plane group.
- Id string
- ID of the data-plane group that represents a deployment target for a set of data-planes.
- Private
Ip List<string>Addresses - List of private IP addresses of the internal load balancer that proxies traffic to this data-plane group.
- Provider string
- Name of cloud provider. Not Null; must be one of ["aws", "azure"]
- Region string
- Region ID for cloud provider region. Not Null
- State string
- State of the data-plane group. must be one of ["created", "initializing", "ready", "terminating", "terminated"]
- Updated
At string - An RFC-3339 timestamp representation of data-plane group update date.
- Autoscale
Cloud
Gateway Configuration Dataplane Group Autoscale - Not Null
- Cloud
Gateway stringNetwork Id - Not Null
- Created
At string - An RFC-3339 timestamp representation of data-plane group creation date.
- Egress
Ip []stringAddresses - List of egress IP addresses for the network that this data-plane group runs on.
- Environments
[]Cloud
Gateway Configuration Dataplane Group Environment - Array of environment variables to set for a data-plane group.
- Id string
- ID of the data-plane group that represents a deployment target for a set of data-planes.
- Private
Ip []stringAddresses - List of private IP addresses of the internal load balancer that proxies traffic to this data-plane group.
- Provider string
- Name of cloud provider. Not Null; must be one of ["aws", "azure"]
- Region string
- Region ID for cloud provider region. Not Null
- State string
- State of the data-plane group. must be one of ["created", "initializing", "ready", "terminating", "terminated"]
- Updated
At string - An RFC-3339 timestamp representation of data-plane group update date.
- autoscale
Cloud
Gateway Configuration Dataplane Group Autoscale - Not Null
- cloud
Gateway StringNetwork Id - Not Null
- created
At String - An RFC-3339 timestamp representation of data-plane group creation date.
- egress
Ip List<String>Addresses - List of egress IP addresses for the network that this data-plane group runs on.
- environments
List<Cloud
Gateway Configuration Dataplane Group Environment> - Array of environment variables to set for a data-plane group.
- id String
- ID of the data-plane group that represents a deployment target for a set of data-planes.
- private
Ip List<String>Addresses - List of private IP addresses of the internal load balancer that proxies traffic to this data-plane group.
- provider String
- Name of cloud provider. Not Null; must be one of ["aws", "azure"]
- region String
- Region ID for cloud provider region. Not Null
- state String
- State of the data-plane group. must be one of ["created", "initializing", "ready", "terminating", "terminated"]
- updated
At String - An RFC-3339 timestamp representation of data-plane group update date.
- autoscale
Cloud
Gateway Configuration Dataplane Group Autoscale - Not Null
- cloud
Gateway stringNetwork Id - Not Null
- created
At string - An RFC-3339 timestamp representation of data-plane group creation date.
- egress
Ip string[]Addresses - List of egress IP addresses for the network that this data-plane group runs on.
- environments
Cloud
Gateway Configuration Dataplane Group Environment[] - Array of environment variables to set for a data-plane group.
- id string
- ID of the data-plane group that represents a deployment target for a set of data-planes.
- private
Ip string[]Addresses - List of private IP addresses of the internal load balancer that proxies traffic to this data-plane group.
- provider string
- Name of cloud provider. Not Null; must be one of ["aws", "azure"]
- region string
- Region ID for cloud provider region. Not Null
- state string
- State of the data-plane group. must be one of ["created", "initializing", "ready", "terminating", "terminated"]
- updated
At string - An RFC-3339 timestamp representation of data-plane group update date.
- autoscale
Cloud
Gateway Configuration Dataplane Group Autoscale - Not Null
- cloud_
gateway_ strnetwork_ id - Not Null
- created_
at str - An RFC-3339 timestamp representation of data-plane group creation date.
- egress_
ip_ Sequence[str]addresses - List of egress IP addresses for the network that this data-plane group runs on.
- environments
Sequence[Cloud
Gateway Configuration Dataplane Group Environment] - Array of environment variables to set for a data-plane group.
- id str
- ID of the data-plane group that represents a deployment target for a set of data-planes.
- private_
ip_ Sequence[str]addresses - List of private IP addresses of the internal load balancer that proxies traffic to this data-plane group.
- provider str
- Name of cloud provider. Not Null; must be one of ["aws", "azure"]
- region str
- Region ID for cloud provider region. Not Null
- state str
- State of the data-plane group. must be one of ["created", "initializing", "ready", "terminating", "terminated"]
- updated_
at str - An RFC-3339 timestamp representation of data-plane group update date.
- autoscale Property Map
- Not Null
- cloud
Gateway StringNetwork Id - Not Null
- created
At String - An RFC-3339 timestamp representation of data-plane group creation date.
- egress
Ip List<String>Addresses - List of egress IP addresses for the network that this data-plane group runs on.
- environments List<Property Map>
- Array of environment variables to set for a data-plane group.
- id String
- ID of the data-plane group that represents a deployment target for a set of data-planes.
- private
Ip List<String>Addresses - List of private IP addresses of the internal load balancer that proxies traffic to this data-plane group.
- provider String
- Name of cloud provider. Not Null; must be one of ["aws", "azure"]
- region String
- Region ID for cloud provider region. Not Null
- state String
- State of the data-plane group. must be one of ["created", "initializing", "ready", "terminating", "terminated"]
- updated
At String - An RFC-3339 timestamp representation of data-plane group update date.
CloudGatewayConfigurationDataplaneGroupAutoscale, CloudGatewayConfigurationDataplaneGroupAutoscaleArgs
- Configuration
Data CloudPlane Group Autoscale Autopilot Gateway Configuration Dataplane Group Autoscale Configuration Data Plane Group Autoscale Autopilot - Object that describes the autopilot autoscaling strategy.
- Configuration
Data CloudPlane Group Autoscale Static Gateway Configuration Dataplane Group Autoscale Configuration Data Plane Group Autoscale Static - Object that describes the static autoscaling strategy.
- Configuration
Data CloudPlane Group Autoscale Autopilot Gateway Configuration Dataplane Group Autoscale Configuration Data Plane Group Autoscale Autopilot - Object that describes the autopilot autoscaling strategy.
- Configuration
Data CloudPlane Group Autoscale Static Gateway Configuration Dataplane Group Autoscale Configuration Data Plane Group Autoscale Static - Object that describes the static autoscaling strategy.
- configuration
Data CloudPlane Group Autoscale Autopilot Gateway Configuration Dataplane Group Autoscale Configuration Data Plane Group Autoscale Autopilot - Object that describes the autopilot autoscaling strategy.
- configuration
Data CloudPlane Group Autoscale Static Gateway Configuration Dataplane Group Autoscale Configuration Data Plane Group Autoscale Static - Object that describes the static autoscaling strategy.
- configuration
Data CloudPlane Group Autoscale Autopilot Gateway Configuration Dataplane Group Autoscale Configuration Data Plane Group Autoscale Autopilot - Object that describes the autopilot autoscaling strategy.
- configuration
Data CloudPlane Group Autoscale Static Gateway Configuration Dataplane Group Autoscale Configuration Data Plane Group Autoscale Static - Object that describes the static autoscaling strategy.
- configuration_
data_ Cloudplane_ group_ autoscale_ autopilot Gateway Configuration Dataplane Group Autoscale Configuration Data Plane Group Autoscale Autopilot - Object that describes the autopilot autoscaling strategy.
- configuration_
data_ Cloudplane_ group_ autoscale_ static Gateway Configuration Dataplane Group Autoscale Configuration Data Plane Group Autoscale Static - Object that describes the static autoscaling strategy.
- configuration
Data Property MapPlane Group Autoscale Autopilot - Object that describes the autopilot autoscaling strategy.
- configuration
Data Property MapPlane Group Autoscale Static - Object that describes the static autoscaling strategy.
CloudGatewayConfigurationDataplaneGroupAutoscaleConfigurationDataPlaneGroupAutoscaleAutopilot, CloudGatewayConfigurationDataplaneGroupAutoscaleConfigurationDataPlaneGroupAutoscaleAutopilotArgs
CloudGatewayConfigurationDataplaneGroupAutoscaleConfigurationDataPlaneGroupAutoscaleStatic, CloudGatewayConfigurationDataplaneGroupAutoscaleConfigurationDataPlaneGroupAutoscaleStaticArgs
- Instance
Type string - Instance type name to indicate capacity. Not Null; must be one of ["small", "medium", "large"]
- Kind string
- Not Null; must be "static"
- Requested
Instances double - Number of data-planes the deployment target will contain. Not Null
- Instance
Type string - Instance type name to indicate capacity. Not Null; must be one of ["small", "medium", "large"]
- Kind string
- Not Null; must be "static"
- Requested
Instances float64 - Number of data-planes the deployment target will contain. Not Null
- instance
Type String - Instance type name to indicate capacity. Not Null; must be one of ["small", "medium", "large"]
- kind String
- Not Null; must be "static"
- requested
Instances Double - Number of data-planes the deployment target will contain. Not Null
- instance
Type string - Instance type name to indicate capacity. Not Null; must be one of ["small", "medium", "large"]
- kind string
- Not Null; must be "static"
- requested
Instances number - Number of data-planes the deployment target will contain. Not Null
- instance_
type str - Instance type name to indicate capacity. Not Null; must be one of ["small", "medium", "large"]
- kind str
- Not Null; must be "static"
- requested_
instances float - Number of data-planes the deployment target will contain. Not Null
- instance
Type String - Instance type name to indicate capacity. Not Null; must be one of ["small", "medium", "large"]
- kind String
- Not Null; must be "static"
- requested
Instances Number - Number of data-planes the deployment target will contain. Not Null
CloudGatewayConfigurationDataplaneGroupConfig, CloudGatewayConfigurationDataplaneGroupConfigArgs
- Autoscale
Cloud
Gateway Configuration Dataplane Group Config Autoscale - Cloud
Gateway stringNetwork Id - Environments
List<Cloud
Gateway Configuration Dataplane Group Config Environment> - Array of environment variables to set for a data-plane group.
- Provider string
- Name of cloud provider. must be one of ["aws", "azure"]
- Region string
- Region ID for cloud provider region.
- Autoscale
Cloud
Gateway Configuration Dataplane Group Config Autoscale - Cloud
Gateway stringNetwork Id - Environments
[]Cloud
Gateway Configuration Dataplane Group Config Environment - Array of environment variables to set for a data-plane group.
- Provider string
- Name of cloud provider. must be one of ["aws", "azure"]
- Region string
- Region ID for cloud provider region.
- autoscale
Cloud
Gateway Configuration Dataplane Group Config Autoscale - cloud
Gateway StringNetwork Id - environments
List<Cloud
Gateway Configuration Dataplane Group Config Environment> - Array of environment variables to set for a data-plane group.
- provider String
- Name of cloud provider. must be one of ["aws", "azure"]
- region String
- Region ID for cloud provider region.
- autoscale
Cloud
Gateway Configuration Dataplane Group Config Autoscale - cloud
Gateway stringNetwork Id - environments
Cloud
Gateway Configuration Dataplane Group Config Environment[] - Array of environment variables to set for a data-plane group.
- provider string
- Name of cloud provider. must be one of ["aws", "azure"]
- region string
- Region ID for cloud provider region.
- autoscale
Cloud
Gateway Configuration Dataplane Group Config Autoscale - cloud_
gateway_ strnetwork_ id - environments
Sequence[Cloud
Gateway Configuration Dataplane Group Config Environment] - Array of environment variables to set for a data-plane group.
- provider str
- Name of cloud provider. must be one of ["aws", "azure"]
- region str
- Region ID for cloud provider region.
- autoscale Property Map
- cloud
Gateway StringNetwork Id - environments List<Property Map>
- Array of environment variables to set for a data-plane group.
- provider String
- Name of cloud provider. must be one of ["aws", "azure"]
- region String
- Region ID for cloud provider region.
CloudGatewayConfigurationDataplaneGroupConfigAutoscale, CloudGatewayConfigurationDataplaneGroupConfigAutoscaleArgs
- Configuration
Data CloudPlane Group Autoscale Autopilot Gateway Configuration Dataplane Group Config Autoscale Configuration Data Plane Group Autoscale Autopilot - Object that describes the autopilot autoscaling strategy.
- Configuration
Data CloudPlane Group Autoscale Static Gateway Configuration Dataplane Group Config Autoscale Configuration Data Plane Group Autoscale Static - Object that describes the static autoscaling strategy.
- Configuration
Data CloudPlane Group Autoscale Autopilot Gateway Configuration Dataplane Group Config Autoscale Configuration Data Plane Group Autoscale Autopilot - Object that describes the autopilot autoscaling strategy.
- Configuration
Data CloudPlane Group Autoscale Static Gateway Configuration Dataplane Group Config Autoscale Configuration Data Plane Group Autoscale Static - Object that describes the static autoscaling strategy.
- configuration
Data CloudPlane Group Autoscale Autopilot Gateway Configuration Dataplane Group Config Autoscale Configuration Data Plane Group Autoscale Autopilot - Object that describes the autopilot autoscaling strategy.
- configuration
Data CloudPlane Group Autoscale Static Gateway Configuration Dataplane Group Config Autoscale Configuration Data Plane Group Autoscale Static - Object that describes the static autoscaling strategy.
- configuration
Data CloudPlane Group Autoscale Autopilot Gateway Configuration Dataplane Group Config Autoscale Configuration Data Plane Group Autoscale Autopilot - Object that describes the autopilot autoscaling strategy.
- configuration
Data CloudPlane Group Autoscale Static Gateway Configuration Dataplane Group Config Autoscale Configuration Data Plane Group Autoscale Static - Object that describes the static autoscaling strategy.
- configuration_
data_ Cloudplane_ group_ autoscale_ autopilot Gateway Configuration Dataplane Group Config Autoscale Configuration Data Plane Group Autoscale Autopilot - Object that describes the autopilot autoscaling strategy.
- configuration_
data_ Cloudplane_ group_ autoscale_ static Gateway Configuration Dataplane Group Config Autoscale Configuration Data Plane Group Autoscale Static - Object that describes the static autoscaling strategy.
- configuration
Data Property MapPlane Group Autoscale Autopilot - Object that describes the autopilot autoscaling strategy.
- configuration
Data Property MapPlane Group Autoscale Static - Object that describes the static autoscaling strategy.
CloudGatewayConfigurationDataplaneGroupConfigAutoscaleConfigurationDataPlaneGroupAutoscaleAutopilot, CloudGatewayConfigurationDataplaneGroupConfigAutoscaleConfigurationDataPlaneGroupAutoscaleAutopilotArgs
CloudGatewayConfigurationDataplaneGroupConfigAutoscaleConfigurationDataPlaneGroupAutoscaleStatic, CloudGatewayConfigurationDataplaneGroupConfigAutoscaleConfigurationDataPlaneGroupAutoscaleStaticArgs
- Instance
Type string - Instance type name to indicate capacity. must be one of ["small", "medium", "large"]
- Kind string
- must be "static"
- Requested
Instances double - Number of data-planes the deployment target will contain.
- Instance
Type string - Instance type name to indicate capacity. must be one of ["small", "medium", "large"]
- Kind string
- must be "static"
- Requested
Instances float64 - Number of data-planes the deployment target will contain.
- instance
Type String - Instance type name to indicate capacity. must be one of ["small", "medium", "large"]
- kind String
- must be "static"
- requested
Instances Double - Number of data-planes the deployment target will contain.
- instance
Type string - Instance type name to indicate capacity. must be one of ["small", "medium", "large"]
- kind string
- must be "static"
- requested
Instances number - Number of data-planes the deployment target will contain.
- instance_
type str - Instance type name to indicate capacity. must be one of ["small", "medium", "large"]
- kind str
- must be "static"
- requested_
instances float - Number of data-planes the deployment target will contain.
- instance
Type String - Instance type name to indicate capacity. must be one of ["small", "medium", "large"]
- kind String
- must be "static"
- requested
Instances Number - Number of data-planes the deployment target will contain.
CloudGatewayConfigurationDataplaneGroupConfigEnvironment, CloudGatewayConfigurationDataplaneGroupConfigEnvironmentArgs
CloudGatewayConfigurationDataplaneGroupEnvironment, CloudGatewayConfigurationDataplaneGroupEnvironmentArgs
Import
$ pulumi import konnect:index/cloudGatewayConfiguration:CloudGatewayConfiguration my_konnect_cloud_gateway_configuration "edaf40f9-9fb0-4ffe-bb74-4e763a6bd471"
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.