konnect.GatewayKeySet
Explore with Pulumi AI
GatewayKeySet Resource
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as konnect from "@pulumi/konnect";
const myGatewaykeyset = new konnect.GatewayKeySet("myGatewaykeyset", {
controlPlaneId: "9524ec7d-36d9-465d-a8c5-83a3c9390458",
gatewayKeySetId: "...my_id...",
tags: ["..."],
});
import pulumi
import pulumi_konnect as konnect
my_gatewaykeyset = konnect.GatewayKeySet("myGatewaykeyset",
control_plane_id="9524ec7d-36d9-465d-a8c5-83a3c9390458",
gateway_key_set_id="...my_id...",
tags=["..."])
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.NewGatewayKeySet(ctx, "myGatewaykeyset", &konnect.GatewayKeySetArgs{
ControlPlaneId: pulumi.String("9524ec7d-36d9-465d-a8c5-83a3c9390458"),
GatewayKeySetId: pulumi.String("...my_id..."),
Tags: pulumi.StringArray{
pulumi.String("..."),
},
})
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 myGatewaykeyset = new Konnect.GatewayKeySet("myGatewaykeyset", new()
{
ControlPlaneId = "9524ec7d-36d9-465d-a8c5-83a3c9390458",
GatewayKeySetId = "...my_id...",
Tags = new[]
{
"...",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.konnect.GatewayKeySet;
import com.pulumi.konnect.GatewayKeySetArgs;
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 myGatewaykeyset = new GatewayKeySet("myGatewaykeyset", GatewayKeySetArgs.builder()
.controlPlaneId("9524ec7d-36d9-465d-a8c5-83a3c9390458")
.gatewayKeySetId("...my_id...")
.tags("...")
.build());
}
}
resources:
myGatewaykeyset:
type: konnect:GatewayKeySet
properties:
controlPlaneId: 9524ec7d-36d9-465d-a8c5-83a3c9390458
gatewayKeySetId: '...my_id...'
tags:
- '...'
Create GatewayKeySet Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new GatewayKeySet(name: string, args: GatewayKeySetArgs, opts?: CustomResourceOptions);
@overload
def GatewayKeySet(resource_name: str,
args: GatewayKeySetInitArgs,
opts: Optional[ResourceOptions] = None)
@overload
def GatewayKeySet(resource_name: str,
opts: Optional[ResourceOptions] = None,
control_plane_id: Optional[str] = None,
gateway_key_set_id: Optional[str] = None,
name: Optional[str] = None,
tags: Optional[Sequence[str]] = None)
func NewGatewayKeySet(ctx *Context, name string, args GatewayKeySetArgs, opts ...ResourceOption) (*GatewayKeySet, error)
public GatewayKeySet(string name, GatewayKeySetArgs args, CustomResourceOptions? opts = null)
public GatewayKeySet(String name, GatewayKeySetArgs args)
public GatewayKeySet(String name, GatewayKeySetArgs args, CustomResourceOptions options)
type: konnect:GatewayKeySet
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 GatewayKeySetArgs
- 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 GatewayKeySetInitArgs
- 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 GatewayKeySetArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GatewayKeySetArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GatewayKeySetArgs
- 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 gatewayKeySetResource = new Konnect.GatewayKeySet("gatewayKeySetResource", new()
{
ControlPlaneId = "string",
GatewayKeySetId = "string",
Name = "string",
Tags = new[]
{
"string",
},
});
example, err := konnect.NewGatewayKeySet(ctx, "gatewayKeySetResource", &konnect.GatewayKeySetArgs{
ControlPlaneId: pulumi.String("string"),
GatewayKeySetId: pulumi.String("string"),
Name: pulumi.String("string"),
Tags: pulumi.StringArray{
pulumi.String("string"),
},
})
var gatewayKeySetResource = new GatewayKeySet("gatewayKeySetResource", GatewayKeySetArgs.builder()
.controlPlaneId("string")
.gatewayKeySetId("string")
.name("string")
.tags("string")
.build());
gateway_key_set_resource = konnect.GatewayKeySet("gatewayKeySetResource",
control_plane_id="string",
gateway_key_set_id="string",
name="string",
tags=["string"])
const gatewayKeySetResource = new konnect.GatewayKeySet("gatewayKeySetResource", {
controlPlaneId: "string",
gatewayKeySetId: "string",
name: "string",
tags: ["string"],
});
type: konnect:GatewayKeySet
properties:
controlPlaneId: string
gatewayKeySetId: string
name: string
tags:
- string
GatewayKeySet 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 GatewayKeySet resource accepts the following input properties:
- Control
Plane stringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- Gateway
Key stringSet Id - The ID of this resource.
- Name string
- List<string>
- Control
Plane stringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- Gateway
Key stringSet Id - The ID of this resource.
- Name string
- []string
- control
Plane StringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- gateway
Key StringSet Id - The ID of this resource.
- name String
- List<String>
- control
Plane stringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- gateway
Key stringSet Id - The ID of this resource.
- name string
- string[]
- control_
plane_ strid - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- gateway_
key_ strset_ id - The ID of this resource.
- name str
- Sequence[str]
- control
Plane StringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- gateway
Key StringSet Id - The ID of this resource.
- name String
- List<String>
Outputs
All input properties are implicitly available as output properties. Additionally, the GatewayKeySet resource produces the following output properties:
- created_
at float - Unix epoch when the resource was created.
- id str
- The provider-assigned unique ID for this managed resource.
- updated_
at float - Unix epoch when the resource was last updated.
Look up Existing GatewayKeySet Resource
Get an existing GatewayKeySet 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?: GatewayKeySetState, opts?: CustomResourceOptions): GatewayKeySet
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
control_plane_id: Optional[str] = None,
created_at: Optional[float] = None,
gateway_key_set_id: Optional[str] = None,
name: Optional[str] = None,
tags: Optional[Sequence[str]] = None,
updated_at: Optional[float] = None) -> GatewayKeySet
func GetGatewayKeySet(ctx *Context, name string, id IDInput, state *GatewayKeySetState, opts ...ResourceOption) (*GatewayKeySet, error)
public static GatewayKeySet Get(string name, Input<string> id, GatewayKeySetState? state, CustomResourceOptions? opts = null)
public static GatewayKeySet get(String name, Output<String> id, GatewayKeySetState state, CustomResourceOptions options)
resources: _: type: konnect:GatewayKeySet 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.
- Control
Plane stringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- Created
At double - Unix epoch when the resource was created.
- Gateway
Key stringSet Id - The ID of this resource.
- Name string
- List<string>
- Updated
At double - Unix epoch when the resource was last updated.
- Control
Plane stringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- Created
At float64 - Unix epoch when the resource was created.
- Gateway
Key stringSet Id - The ID of this resource.
- Name string
- []string
- Updated
At float64 - Unix epoch when the resource was last updated.
- control
Plane StringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- created
At Double - Unix epoch when the resource was created.
- gateway
Key StringSet Id - The ID of this resource.
- name String
- List<String>
- updated
At Double - Unix epoch when the resource was last updated.
- control
Plane stringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- created
At number - Unix epoch when the resource was created.
- gateway
Key stringSet Id - The ID of this resource.
- name string
- string[]
- updated
At number - Unix epoch when the resource was last updated.
- control_
plane_ strid - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- created_
at float - Unix epoch when the resource was created.
- gateway_
key_ strset_ id - The ID of this resource.
- name str
- Sequence[str]
- updated_
at float - Unix epoch when the resource was last updated.
- control
Plane StringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- created
At Number - Unix epoch when the resource was created.
- gateway
Key StringSet Id - The ID of this resource.
- name String
- List<String>
- updated
At Number - Unix epoch when the resource was last updated.
Import
$ pulumi import konnect:index/gatewayKeySet:GatewayKeySet my_konnect_gateway_key_set "{ \"control_plane_id\": \"9524ec7d-36d9-465d-a8c5-83a3c9390458\", \"key_set_id\": \"6cc34248-50b4-4a81-9201-3bdf7a83f712\"}"
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.