konnect.MeshControlPlane
Explore with Pulumi AI
MeshControlPlane Resource
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as konnect from "@pulumi/konnect";
const myMeshcontrolplane = new konnect.MeshControlPlane("myMeshcontrolplane", {
description: "A control plane to handle traffic on development environment.",
features: [{
hostnameGeneratorCreation: {
enabled: false,
},
meshCreation: {
enabled: false,
},
type: "MeshCreation",
}],
labels: {
key: "value",
},
});
import pulumi
import pulumi_konnect as konnect
my_meshcontrolplane = konnect.MeshControlPlane("myMeshcontrolplane",
description="A control plane to handle traffic on development environment.",
features=[{
"hostname_generator_creation": {
"enabled": False,
},
"mesh_creation": {
"enabled": False,
},
"type": "MeshCreation",
}],
labels={
"key": "value",
})
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.NewMeshControlPlane(ctx, "myMeshcontrolplane", &konnect.MeshControlPlaneArgs{
Description: pulumi.String("A control plane to handle traffic on development environment."),
Features: konnect.MeshControlPlaneFeatureArray{
&konnect.MeshControlPlaneFeatureArgs{
HostnameGeneratorCreation: &konnect.MeshControlPlaneFeatureHostnameGeneratorCreationArgs{
Enabled: pulumi.Bool(false),
},
MeshCreation: &konnect.MeshControlPlaneFeatureMeshCreationArgs{
Enabled: pulumi.Bool(false),
},
Type: pulumi.String("MeshCreation"),
},
},
Labels: pulumi.StringMap{
"key": pulumi.String("value"),
},
})
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 myMeshcontrolplane = new Konnect.MeshControlPlane("myMeshcontrolplane", new()
{
Description = "A control plane to handle traffic on development environment.",
Features = new[]
{
new Konnect.Inputs.MeshControlPlaneFeatureArgs
{
HostnameGeneratorCreation = new Konnect.Inputs.MeshControlPlaneFeatureHostnameGeneratorCreationArgs
{
Enabled = false,
},
MeshCreation = new Konnect.Inputs.MeshControlPlaneFeatureMeshCreationArgs
{
Enabled = false,
},
Type = "MeshCreation",
},
},
Labels =
{
{ "key", "value" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.konnect.MeshControlPlane;
import com.pulumi.konnect.MeshControlPlaneArgs;
import com.pulumi.konnect.inputs.MeshControlPlaneFeatureArgs;
import com.pulumi.konnect.inputs.MeshControlPlaneFeatureHostnameGeneratorCreationArgs;
import com.pulumi.konnect.inputs.MeshControlPlaneFeatureMeshCreationArgs;
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 myMeshcontrolplane = new MeshControlPlane("myMeshcontrolplane", MeshControlPlaneArgs.builder()
.description("A control plane to handle traffic on development environment.")
.features(MeshControlPlaneFeatureArgs.builder()
.hostnameGeneratorCreation(MeshControlPlaneFeatureHostnameGeneratorCreationArgs.builder()
.enabled(false)
.build())
.meshCreation(MeshControlPlaneFeatureMeshCreationArgs.builder()
.enabled(false)
.build())
.type("MeshCreation")
.build())
.labels(Map.of("key", "value"))
.build());
}
}
resources:
myMeshcontrolplane:
type: konnect:MeshControlPlane
properties:
description: A control plane to handle traffic on development environment.
features:
- hostnameGeneratorCreation:
enabled: false
meshCreation:
enabled: false
type: MeshCreation
labels:
key: value
Create MeshControlPlane Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new MeshControlPlane(name: string, args?: MeshControlPlaneArgs, opts?: CustomResourceOptions);
@overload
def MeshControlPlane(resource_name: str,
args: Optional[MeshControlPlaneArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def MeshControlPlane(resource_name: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
features: Optional[Sequence[MeshControlPlaneFeatureArgs]] = None,
labels: Optional[Mapping[str, str]] = None,
name: Optional[str] = None)
func NewMeshControlPlane(ctx *Context, name string, args *MeshControlPlaneArgs, opts ...ResourceOption) (*MeshControlPlane, error)
public MeshControlPlane(string name, MeshControlPlaneArgs? args = null, CustomResourceOptions? opts = null)
public MeshControlPlane(String name, MeshControlPlaneArgs args)
public MeshControlPlane(String name, MeshControlPlaneArgs args, CustomResourceOptions options)
type: konnect:MeshControlPlane
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 MeshControlPlaneArgs
- 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 MeshControlPlaneArgs
- 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 MeshControlPlaneArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args MeshControlPlaneArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args MeshControlPlaneArgs
- 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 meshControlPlaneResource = new Konnect.MeshControlPlane("meshControlPlaneResource", new()
{
Description = "string",
Features = new[]
{
new Konnect.Inputs.MeshControlPlaneFeatureArgs
{
HostnameGeneratorCreation = new Konnect.Inputs.MeshControlPlaneFeatureHostnameGeneratorCreationArgs
{
Enabled = false,
},
MeshCreation = new Konnect.Inputs.MeshControlPlaneFeatureMeshCreationArgs
{
Enabled = false,
},
Type = "string",
},
},
Labels =
{
{ "string", "string" },
},
Name = "string",
});
example, err := konnect.NewMeshControlPlane(ctx, "meshControlPlaneResource", &konnect.MeshControlPlaneArgs{
Description: pulumi.String("string"),
Features: .MeshControlPlaneFeatureArray{
&.MeshControlPlaneFeatureArgs{
HostnameGeneratorCreation: &.MeshControlPlaneFeatureHostnameGeneratorCreationArgs{
Enabled: pulumi.Bool(false),
},
MeshCreation: &.MeshControlPlaneFeatureMeshCreationArgs{
Enabled: pulumi.Bool(false),
},
Type: pulumi.String("string"),
},
},
Labels: pulumi.StringMap{
"string": pulumi.String("string"),
},
Name: pulumi.String("string"),
})
var meshControlPlaneResource = new MeshControlPlane("meshControlPlaneResource", MeshControlPlaneArgs.builder()
.description("string")
.features(MeshControlPlaneFeatureArgs.builder()
.hostnameGeneratorCreation(MeshControlPlaneFeatureHostnameGeneratorCreationArgs.builder()
.enabled(false)
.build())
.meshCreation(MeshControlPlaneFeatureMeshCreationArgs.builder()
.enabled(false)
.build())
.type("string")
.build())
.labels(Map.of("string", "string"))
.name("string")
.build());
mesh_control_plane_resource = konnect.MeshControlPlane("meshControlPlaneResource",
description="string",
features=[{
"hostname_generator_creation": {
"enabled": False,
},
"mesh_creation": {
"enabled": False,
},
"type": "string",
}],
labels={
"string": "string",
},
name="string")
const meshControlPlaneResource = new konnect.MeshControlPlane("meshControlPlaneResource", {
description: "string",
features: [{
hostnameGeneratorCreation: {
enabled: false,
},
meshCreation: {
enabled: false,
},
type: "string",
}],
labels: {
string: "string",
},
name: "string",
});
type: konnect:MeshControlPlane
properties:
description: string
features:
- hostnameGeneratorCreation:
enabled: false
meshCreation:
enabled: false
type: string
labels:
string: string
name: string
MeshControlPlane 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 MeshControlPlane resource accepts the following input properties:
- Description string
- Features
List<Mesh
Control Plane Feature> - Requires replacement if changed.
- Labels Dictionary<string, string>
- Labels to facilitate tagged search on control planes. Keys must be of length 1-63 characters.
- Name string
- The name of the control plane.
- Description string
- Features
[]Mesh
Control Plane Feature Args - Requires replacement if changed.
- Labels map[string]string
- Labels to facilitate tagged search on control planes. Keys must be of length 1-63 characters.
- Name string
- The name of the control plane.
- description String
- features
List<Mesh
Control Plane Feature> - Requires replacement if changed.
- labels Map<String,String>
- Labels to facilitate tagged search on control planes. Keys must be of length 1-63 characters.
- name String
- The name of the control plane.
- description string
- features
Mesh
Control Plane Feature[] - Requires replacement if changed.
- labels {[key: string]: string}
- Labels to facilitate tagged search on control planes. Keys must be of length 1-63 characters.
- name string
- The name of the control plane.
- description str
- features
Sequence[Mesh
Control Plane Feature Args] - Requires replacement if changed.
- labels Mapping[str, str]
- Labels to facilitate tagged search on control planes. Keys must be of length 1-63 characters.
- name str
- The name of the control plane.
- description String
- features List<Property Map>
- Requires replacement if changed.
- labels Map<String>
- Labels to facilitate tagged search on control planes. Keys must be of length 1-63 characters.
- name String
- The name of the control plane.
Outputs
All input properties are implicitly available as output properties. Additionally, the MeshControlPlane resource produces the following output properties:
- created_
at str - id str
- The provider-assigned unique ID for this managed resource.
- updated_
at str
Look up Existing MeshControlPlane Resource
Get an existing MeshControlPlane 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?: MeshControlPlaneState, opts?: CustomResourceOptions): MeshControlPlane
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
created_at: Optional[str] = None,
description: Optional[str] = None,
features: Optional[Sequence[MeshControlPlaneFeatureArgs]] = None,
labels: Optional[Mapping[str, str]] = None,
name: Optional[str] = None,
updated_at: Optional[str] = None) -> MeshControlPlane
func GetMeshControlPlane(ctx *Context, name string, id IDInput, state *MeshControlPlaneState, opts ...ResourceOption) (*MeshControlPlane, error)
public static MeshControlPlane Get(string name, Input<string> id, MeshControlPlaneState? state, CustomResourceOptions? opts = null)
public static MeshControlPlane get(String name, Output<String> id, MeshControlPlaneState state, CustomResourceOptions options)
resources: _: type: konnect:MeshControlPlane 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.
- Created
At string - Description string
- Features
List<Mesh
Control Plane Feature> - Requires replacement if changed.
- Labels Dictionary<string, string>
- Labels to facilitate tagged search on control planes. Keys must be of length 1-63 characters.
- Name string
- The name of the control plane.
- Updated
At string
- Created
At string - Description string
- Features
[]Mesh
Control Plane Feature Args - Requires replacement if changed.
- Labels map[string]string
- Labels to facilitate tagged search on control planes. Keys must be of length 1-63 characters.
- Name string
- The name of the control plane.
- Updated
At string
- created
At String - description String
- features
List<Mesh
Control Plane Feature> - Requires replacement if changed.
- labels Map<String,String>
- Labels to facilitate tagged search on control planes. Keys must be of length 1-63 characters.
- name String
- The name of the control plane.
- updated
At String
- created
At string - description string
- features
Mesh
Control Plane Feature[] - Requires replacement if changed.
- labels {[key: string]: string}
- Labels to facilitate tagged search on control planes. Keys must be of length 1-63 characters.
- name string
- The name of the control plane.
- updated
At string
- created_
at str - description str
- features
Sequence[Mesh
Control Plane Feature Args] - Requires replacement if changed.
- labels Mapping[str, str]
- Labels to facilitate tagged search on control planes. Keys must be of length 1-63 characters.
- name str
- The name of the control plane.
- updated_
at str
- created
At String - description String
- features List<Property Map>
- Requires replacement if changed.
- labels Map<String>
- Labels to facilitate tagged search on control planes. Keys must be of length 1-63 characters.
- name String
- The name of the control plane.
- updated
At String
Supporting Types
MeshControlPlaneFeature, MeshControlPlaneFeatureArgs
- Hostname
Generator MeshCreation Control Plane Feature Hostname Generator Creation - Requires replacement if changed.
- Mesh
Creation MeshControl Plane Feature Mesh Creation - Requires replacement if changed.
- Type string
- Not Null; must be one of ["MeshCreation", "HostnameGeneratorCreation"]; Requires replacement if changed.
- Hostname
Generator MeshCreation Control Plane Feature Hostname Generator Creation - Requires replacement if changed.
- Mesh
Creation MeshControl Plane Feature Mesh Creation - Requires replacement if changed.
- Type string
- Not Null; must be one of ["MeshCreation", "HostnameGeneratorCreation"]; Requires replacement if changed.
- hostname
Generator MeshCreation Control Plane Feature Hostname Generator Creation - Requires replacement if changed.
- mesh
Creation MeshControl Plane Feature Mesh Creation - Requires replacement if changed.
- type String
- Not Null; must be one of ["MeshCreation", "HostnameGeneratorCreation"]; Requires replacement if changed.
- hostname
Generator MeshCreation Control Plane Feature Hostname Generator Creation - Requires replacement if changed.
- mesh
Creation MeshControl Plane Feature Mesh Creation - Requires replacement if changed.
- type string
- Not Null; must be one of ["MeshCreation", "HostnameGeneratorCreation"]; Requires replacement if changed.
- hostname_
generator_ Meshcreation Control Plane Feature Hostname Generator Creation - Requires replacement if changed.
- mesh_
creation MeshControl Plane Feature Mesh Creation - Requires replacement if changed.
- type str
- Not Null; must be one of ["MeshCreation", "HostnameGeneratorCreation"]; Requires replacement if changed.
- hostname
Generator Property MapCreation - Requires replacement if changed.
- mesh
Creation Property Map - Requires replacement if changed.
- type String
- Not Null; must be one of ["MeshCreation", "HostnameGeneratorCreation"]; Requires replacement if changed.
MeshControlPlaneFeatureHostnameGeneratorCreation, MeshControlPlaneFeatureHostnameGeneratorCreationArgs
- Enabled bool
- Not Null; Requires replacement if changed.
- Enabled bool
- Not Null; Requires replacement if changed.
- enabled Boolean
- Not Null; Requires replacement if changed.
- enabled boolean
- Not Null; Requires replacement if changed.
- enabled bool
- Not Null; Requires replacement if changed.
- enabled Boolean
- Not Null; Requires replacement if changed.
MeshControlPlaneFeatureMeshCreation, MeshControlPlaneFeatureMeshCreationArgs
- Enabled bool
- Not Null; Requires replacement if changed.
- Enabled bool
- Not Null; Requires replacement if changed.
- enabled Boolean
- Not Null; Requires replacement if changed.
- enabled boolean
- Not Null; Requires replacement if changed.
- enabled bool
- Not Null; Requires replacement if changed.
- enabled Boolean
- Not Null; Requires replacement if changed.
Import
$ pulumi import konnect:index/meshControlPlane:MeshControlPlane my_konnect_mesh_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.