konnect.GatewayKey
Explore with Pulumi AI
GatewayKey Resource
Example Usage
Coming soon!
Coming soon!
Coming soon!
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.konnect.GatewayKey;
import com.pulumi.konnect.GatewayKeyArgs;
import com.pulumi.konnect.inputs.GatewayKeyPemArgs;
import com.pulumi.konnect.inputs.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 myGatewaykey = new GatewayKey("myGatewaykey", GatewayKeyArgs.builder()
.controlPlaneId("9524ec7d-36d9-465d-a8c5-83a3c9390458")
.gatewayKeyId("...my_id...")
.jwk("...my_jwk...")
.kid("...my_kid...")
.pem(GatewayKeyPemArgs.builder()
.private_key("...my_private_key...")
.public_key("...my_public_key...")
.build())
.set(GatewayKeySetArgs.builder()
.id("...my_id...")
.build())
.tags("...")
.build());
}
}
resources:
myGatewaykey:
type: konnect:GatewayKey
properties:
controlPlaneId: 9524ec7d-36d9-465d-a8c5-83a3c9390458
gatewayKeyId: '...my_id...'
jwk: '...my_jwk...'
kid: '...my_kid...'
pem:
private_key: '...my_private_key...'
public_key: '...my_public_key...'
set:
id: '...my_id...'
tags:
- '...'
Create GatewayKey Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new GatewayKey(name: string, args: GatewayKeyArgs, opts?: CustomResourceOptions);
@overload
def GatewayKey(resource_name: str,
args: GatewayKeyArgs,
opts: Optional[ResourceOptions] = None)
@overload
def GatewayKey(resource_name: str,
opts: Optional[ResourceOptions] = None,
control_plane_id: Optional[str] = None,
kid: Optional[str] = None,
gateway_key_id: Optional[str] = None,
jwk: Optional[str] = None,
name: Optional[str] = None,
pem: Optional[GatewayKeyPemArgs] = None,
set: Optional[GatewayKeySetArgs] = None,
tags: Optional[Sequence[str]] = None)
func NewGatewayKey(ctx *Context, name string, args GatewayKeyArgs, opts ...ResourceOption) (*GatewayKey, error)
public GatewayKey(string name, GatewayKeyArgs args, CustomResourceOptions? opts = null)
public GatewayKey(String name, GatewayKeyArgs args)
public GatewayKey(String name, GatewayKeyArgs args, CustomResourceOptions options)
type: konnect:GatewayKey
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 GatewayKeyArgs
- 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 GatewayKeyArgs
- 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 GatewayKeyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GatewayKeyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GatewayKeyArgs
- 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 gatewayKeyResource = new Konnect.GatewayKey("gatewayKeyResource", new()
{
ControlPlaneId = "string",
Kid = "string",
GatewayKeyId = "string",
Jwk = "string",
Name = "string",
Pem = new Konnect.Inputs.GatewayKeyPemArgs
{
PrivateKey = "string",
PublicKey = "string",
},
Set = new Konnect.Inputs.GatewayKeySetArgs
{
Id = "string",
},
Tags = new[]
{
"string",
},
});
example, err := konnect.NewGatewayKey(ctx, "gatewayKeyResource", &konnect.GatewayKeyArgs{
ControlPlaneId: pulumi.String("string"),
Kid: pulumi.String("string"),
GatewayKeyId: pulumi.String("string"),
Jwk: pulumi.String("string"),
Name: pulumi.String("string"),
Pem: &.GatewayKeyPemArgs{
PrivateKey: pulumi.String("string"),
PublicKey: pulumi.String("string"),
},
Set: &.GatewayKeySetTypeArgs{
Id: pulumi.String("string"),
},
Tags: pulumi.StringArray{
pulumi.String("string"),
},
})
var gatewayKeyResource = new GatewayKey("gatewayKeyResource", GatewayKeyArgs.builder()
.controlPlaneId("string")
.kid("string")
.gatewayKeyId("string")
.jwk("string")
.name("string")
.pem(GatewayKeyPemArgs.builder()
.privateKey("string")
.publicKey("string")
.build())
.set(GatewayKeySetArgs.builder()
.id("string")
.build())
.tags("string")
.build());
gateway_key_resource = konnect.GatewayKey("gatewayKeyResource",
control_plane_id="string",
kid="string",
gateway_key_id="string",
jwk="string",
name="string",
pem={
"private_key": "string",
"public_key": "string",
},
set={
"id": "string",
},
tags=["string"])
const gatewayKeyResource = new konnect.GatewayKey("gatewayKeyResource", {
controlPlaneId: "string",
kid: "string",
gatewayKeyId: "string",
jwk: "string",
name: "string",
pem: {
privateKey: "string",
publicKey: "string",
},
set: {
id: "string",
},
tags: ["string"],
});
type: konnect:GatewayKey
properties:
controlPlaneId: string
gatewayKeyId: string
jwk: string
kid: string
name: string
pem:
privateKey: string
publicKey: string
set:
id: string
tags:
- string
GatewayKey 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 GatewayKey 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.
- Kid string
- A unique identifier for a key.
- Gateway
Key stringId - The ID of this resource.
- Jwk string
- A JSON Web Key represented as a string.
- Name string
- The name to associate with the given keys.
- Pem
Gateway
Key Pem - A keypair in PEM format.
- Set
Gateway
Key Set - The id (an UUID) of the key-set with which to associate the key.
- List<string>
- An optional set of strings associated with the Key for grouping and filtering.
- Control
Plane stringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- Kid string
- A unique identifier for a key.
- Gateway
Key stringId - The ID of this resource.
- Jwk string
- A JSON Web Key represented as a string.
- Name string
- The name to associate with the given keys.
- Pem
Gateway
Key Pem Args - A keypair in PEM format.
- Set
Gateway
Key Set Type Args - The id (an UUID) of the key-set with which to associate the key.
- []string
- An optional set of strings associated with the Key for grouping and filtering.
- control
Plane StringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- kid String
- A unique identifier for a key.
- gateway
Key StringId - The ID of this resource.
- jwk String
- A JSON Web Key represented as a string.
- name String
- The name to associate with the given keys.
- pem
Gateway
Key Pem - A keypair in PEM format.
- set
Gateway
Key Set - The id (an UUID) of the key-set with which to associate the key.
- List<String>
- An optional set of strings associated with the Key for grouping and filtering.
- control
Plane stringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- kid string
- A unique identifier for a key.
- gateway
Key stringId - The ID of this resource.
- jwk string
- A JSON Web Key represented as a string.
- name string
- The name to associate with the given keys.
- pem
Gateway
Key Pem - A keypair in PEM format.
- set
Gateway
Key Set - The id (an UUID) of the key-set with which to associate the key.
- string[]
- An optional set of strings associated with the Key for grouping and filtering.
- control_
plane_ strid - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- kid str
- A unique identifier for a key.
- gateway_
key_ strid - The ID of this resource.
- jwk str
- A JSON Web Key represented as a string.
- name str
- The name to associate with the given keys.
- pem
Gateway
Key Pem Args - A keypair in PEM format.
- set
Gateway
Key Set Args - The id (an UUID) of the key-set with which to associate the key.
- Sequence[str]
- An optional set of strings associated with the Key for grouping and filtering.
- control
Plane StringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- kid String
- A unique identifier for a key.
- gateway
Key StringId - The ID of this resource.
- jwk String
- A JSON Web Key represented as a string.
- name String
- The name to associate with the given keys.
- pem Property Map
- A keypair in PEM format.
- set Property Map
- The id (an UUID) of the key-set with which to associate the key.
- List<String>
- An optional set of strings associated with the Key for grouping and filtering.
Outputs
All input properties are implicitly available as output properties. Additionally, the GatewayKey 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 GatewayKey Resource
Get an existing GatewayKey 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?: GatewayKeyState, opts?: CustomResourceOptions): GatewayKey
@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_id: Optional[str] = None,
jwk: Optional[str] = None,
kid: Optional[str] = None,
name: Optional[str] = None,
pem: Optional[GatewayKeyPemArgs] = None,
set: Optional[GatewayKeySetArgs] = None,
tags: Optional[Sequence[str]] = None,
updated_at: Optional[float] = None) -> GatewayKey
func GetGatewayKey(ctx *Context, name string, id IDInput, state *GatewayKeyState, opts ...ResourceOption) (*GatewayKey, error)
public static GatewayKey Get(string name, Input<string> id, GatewayKeyState? state, CustomResourceOptions? opts = null)
public static GatewayKey get(String name, Output<String> id, GatewayKeyState state, CustomResourceOptions options)
resources: _: type: konnect:GatewayKey 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 stringId - The ID of this resource.
- Jwk string
- A JSON Web Key represented as a string.
- Kid string
- A unique identifier for a key.
- Name string
- The name to associate with the given keys.
- Pem
Gateway
Key Pem - A keypair in PEM format.
- Set
Gateway
Key Set - The id (an UUID) of the key-set with which to associate the key.
- List<string>
- An optional set of strings associated with the Key for grouping and filtering.
- 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 stringId - The ID of this resource.
- Jwk string
- A JSON Web Key represented as a string.
- Kid string
- A unique identifier for a key.
- Name string
- The name to associate with the given keys.
- Pem
Gateway
Key Pem Args - A keypair in PEM format.
- Set
Gateway
Key Set Type Args - The id (an UUID) of the key-set with which to associate the key.
- []string
- An optional set of strings associated with the Key for grouping and filtering.
- 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 StringId - The ID of this resource.
- jwk String
- A JSON Web Key represented as a string.
- kid String
- A unique identifier for a key.
- name String
- The name to associate with the given keys.
- pem
Gateway
Key Pem - A keypair in PEM format.
- set
Gateway
Key Set - The id (an UUID) of the key-set with which to associate the key.
- List<String>
- An optional set of strings associated with the Key for grouping and filtering.
- 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 stringId - The ID of this resource.
- jwk string
- A JSON Web Key represented as a string.
- kid string
- A unique identifier for a key.
- name string
- The name to associate with the given keys.
- pem
Gateway
Key Pem - A keypair in PEM format.
- set
Gateway
Key Set - The id (an UUID) of the key-set with which to associate the key.
- string[]
- An optional set of strings associated with the Key for grouping and filtering.
- 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_ strid - The ID of this resource.
- jwk str
- A JSON Web Key represented as a string.
- kid str
- A unique identifier for a key.
- name str
- The name to associate with the given keys.
- pem
Gateway
Key Pem Args - A keypair in PEM format.
- set
Gateway
Key Set Args - The id (an UUID) of the key-set with which to associate the key.
- Sequence[str]
- An optional set of strings associated with the Key for grouping and filtering.
- 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 StringId - The ID of this resource.
- jwk String
- A JSON Web Key represented as a string.
- kid String
- A unique identifier for a key.
- name String
- The name to associate with the given keys.
- pem Property Map
- A keypair in PEM format.
- set Property Map
- The id (an UUID) of the key-set with which to associate the key.
- List<String>
- An optional set of strings associated with the Key for grouping and filtering.
- updated
At Number - Unix epoch when the resource was last updated.
Supporting Types
GatewayKeyPem, GatewayKeyPemArgs
- Private
Key string - Public
Key string
- Private
Key string - Public
Key string
- private
Key String - public
Key String
- private
Key string - public
Key string
- private_
key str - public_
key str
- private
Key String - public
Key String
GatewayKeySet, GatewayKeySetArgs
- Id string
- Id string
- id String
- id string
- id str
- id String
Import
$ pulumi import konnect:index/gatewayKey:GatewayKey my_konnect_gateway_key "{ \"control_plane_id\": \"9524ec7d-36d9-465d-a8c5-83a3c9390458\", \"key_id\": \"bba22c06-a632-42be-a018-1b9ff357b5b9\"}"
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.