1. Packages
  2. Konnect Provider
  3. API Docs
  4. GatewayCertificate
konnect 2.4.1 published on Thursday, Mar 13, 2025 by kong

konnect.GatewayCertificate

Explore with Pulumi AI

konnect logo
konnect 2.4.1 published on Thursday, Mar 13, 2025 by kong

    GatewayCertificate Resource

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as konnect from "@pulumi/konnect";
    
    const myGatewaycertificate = new konnect.GatewayCertificate("myGatewaycertificate", {
        cert: "...my_cert...",
        certAlt: "...my_cert_alt...",
        controlPlaneId: "9524ec7d-36d9-465d-a8c5-83a3c9390458",
        gatewayCertificateId: "...my_id...",
        key: "...my_key...",
        keyAlt: "...my_key_alt...",
        snis: ["..."],
        tags: ["..."],
    });
    
    import pulumi
    import pulumi_konnect as konnect
    
    my_gatewaycertificate = konnect.GatewayCertificate("myGatewaycertificate",
        cert="...my_cert...",
        cert_alt="...my_cert_alt...",
        control_plane_id="9524ec7d-36d9-465d-a8c5-83a3c9390458",
        gateway_certificate_id="...my_id...",
        key="...my_key...",
        key_alt="...my_key_alt...",
        snis=["..."],
        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.NewGatewayCertificate(ctx, "myGatewaycertificate", &konnect.GatewayCertificateArgs{
    			Cert:                 pulumi.String("...my_cert..."),
    			CertAlt:              pulumi.String("...my_cert_alt..."),
    			ControlPlaneId:       pulumi.String("9524ec7d-36d9-465d-a8c5-83a3c9390458"),
    			GatewayCertificateId: pulumi.String("...my_id..."),
    			Key:                  pulumi.String("...my_key..."),
    			KeyAlt:               pulumi.String("...my_key_alt..."),
    			Snis: pulumi.StringArray{
    				pulumi.String("..."),
    			},
    			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 myGatewaycertificate = new Konnect.GatewayCertificate("myGatewaycertificate", new()
        {
            Cert = "...my_cert...",
            CertAlt = "...my_cert_alt...",
            ControlPlaneId = "9524ec7d-36d9-465d-a8c5-83a3c9390458",
            GatewayCertificateId = "...my_id...",
            Key = "...my_key...",
            KeyAlt = "...my_key_alt...",
            Snis = new[]
            {
                "...",
            },
            Tags = new[]
            {
                "...",
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.konnect.GatewayCertificate;
    import com.pulumi.konnect.GatewayCertificateArgs;
    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 myGatewaycertificate = new GatewayCertificate("myGatewaycertificate", GatewayCertificateArgs.builder()
                .cert("...my_cert...")
                .certAlt("...my_cert_alt...")
                .controlPlaneId("9524ec7d-36d9-465d-a8c5-83a3c9390458")
                .gatewayCertificateId("...my_id...")
                .key("...my_key...")
                .keyAlt("...my_key_alt...")
                .snis("...")
                .tags("...")
                .build());
    
        }
    }
    
    resources:
      myGatewaycertificate:
        type: konnect:GatewayCertificate
        properties:
          cert: '...my_cert...'
          certAlt: '...my_cert_alt...'
          controlPlaneId: 9524ec7d-36d9-465d-a8c5-83a3c9390458
          gatewayCertificateId: '...my_id...'
          key: '...my_key...'
          keyAlt: '...my_key_alt...'
          snis:
            - '...'
          tags:
            - '...'
    

    Create GatewayCertificate Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new GatewayCertificate(name: string, args: GatewayCertificateArgs, opts?: CustomResourceOptions);
    @overload
    def GatewayCertificate(resource_name: str,
                           args: GatewayCertificateArgs,
                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def GatewayCertificate(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           cert: Optional[str] = None,
                           control_plane_id: Optional[str] = None,
                           key: Optional[str] = None,
                           cert_alt: Optional[str] = None,
                           gateway_certificate_id: Optional[str] = None,
                           key_alt: Optional[str] = None,
                           snis: Optional[Sequence[str]] = None,
                           tags: Optional[Sequence[str]] = None)
    func NewGatewayCertificate(ctx *Context, name string, args GatewayCertificateArgs, opts ...ResourceOption) (*GatewayCertificate, error)
    public GatewayCertificate(string name, GatewayCertificateArgs args, CustomResourceOptions? opts = null)
    public GatewayCertificate(String name, GatewayCertificateArgs args)
    public GatewayCertificate(String name, GatewayCertificateArgs args, CustomResourceOptions options)
    
    type: konnect:GatewayCertificate
    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 GatewayCertificateArgs
    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 GatewayCertificateArgs
    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 GatewayCertificateArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args GatewayCertificateArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args GatewayCertificateArgs
    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 gatewayCertificateResource = new Konnect.GatewayCertificate("gatewayCertificateResource", new()
    {
        Cert = "string",
        ControlPlaneId = "string",
        Key = "string",
        CertAlt = "string",
        GatewayCertificateId = "string",
        KeyAlt = "string",
        Snis = new[]
        {
            "string",
        },
        Tags = new[]
        {
            "string",
        },
    });
    
    example, err := konnect.NewGatewayCertificate(ctx, "gatewayCertificateResource", &konnect.GatewayCertificateArgs{
    Cert: pulumi.String("string"),
    ControlPlaneId: pulumi.String("string"),
    Key: pulumi.String("string"),
    CertAlt: pulumi.String("string"),
    GatewayCertificateId: pulumi.String("string"),
    KeyAlt: pulumi.String("string"),
    Snis: pulumi.StringArray{
    pulumi.String("string"),
    },
    Tags: pulumi.StringArray{
    pulumi.String("string"),
    },
    })
    
    var gatewayCertificateResource = new GatewayCertificate("gatewayCertificateResource", GatewayCertificateArgs.builder()
        .cert("string")
        .controlPlaneId("string")
        .key("string")
        .certAlt("string")
        .gatewayCertificateId("string")
        .keyAlt("string")
        .snis("string")
        .tags("string")
        .build());
    
    gateway_certificate_resource = konnect.GatewayCertificate("gatewayCertificateResource",
        cert="string",
        control_plane_id="string",
        key="string",
        cert_alt="string",
        gateway_certificate_id="string",
        key_alt="string",
        snis=["string"],
        tags=["string"])
    
    const gatewayCertificateResource = new konnect.GatewayCertificate("gatewayCertificateResource", {
        cert: "string",
        controlPlaneId: "string",
        key: "string",
        certAlt: "string",
        gatewayCertificateId: "string",
        keyAlt: "string",
        snis: ["string"],
        tags: ["string"],
    });
    
    type: konnect:GatewayCertificate
    properties:
        cert: string
        certAlt: string
        controlPlaneId: string
        gatewayCertificateId: string
        key: string
        keyAlt: string
        snis:
            - string
        tags:
            - string
    

    GatewayCertificate 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 GatewayCertificate resource accepts the following input properties:

    Cert string
    PEM-encoded public certificate chain of the SSL key pair. This field is referenceable, which means it can be securely stored as a secret in a vault. References must follow a specific format.
    ControlPlaneId string
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    Key string
    PEM-encoded private key of the SSL key pair. This field is referenceable, which means it can be securely stored as a secret in a vault. References must follow a specific format.
    CertAlt string
    PEM-encoded public certificate chain of the alternate SSL key pair. This should only be set if you have both RSA and ECDSA types of certificate available and would like Kong to prefer serving using ECDSA certs when client advertises support for it. This field is referenceable, which means it can be securely stored as a secret in a vault. References must follow a specific format.
    GatewayCertificateId string
    The ID of this resource.
    KeyAlt string
    PEM-encoded private key of the alternate SSL key pair. This should only be set if you have both RSA and ECDSA types of certificate available and would like Kong to prefer serving using ECDSA certs when client advertises support for it. This field is referenceable, which means it can be securely stored as a secret in a vault. References must follow a specific format.
    Snis List<string>
    Tags List<string>
    An optional set of strings associated with the Certificate for grouping and filtering.
    Cert string
    PEM-encoded public certificate chain of the SSL key pair. This field is referenceable, which means it can be securely stored as a secret in a vault. References must follow a specific format.
    ControlPlaneId string
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    Key string
    PEM-encoded private key of the SSL key pair. This field is referenceable, which means it can be securely stored as a secret in a vault. References must follow a specific format.
    CertAlt string
    PEM-encoded public certificate chain of the alternate SSL key pair. This should only be set if you have both RSA and ECDSA types of certificate available and would like Kong to prefer serving using ECDSA certs when client advertises support for it. This field is referenceable, which means it can be securely stored as a secret in a vault. References must follow a specific format.
    GatewayCertificateId string
    The ID of this resource.
    KeyAlt string
    PEM-encoded private key of the alternate SSL key pair. This should only be set if you have both RSA and ECDSA types of certificate available and would like Kong to prefer serving using ECDSA certs when client advertises support for it. This field is referenceable, which means it can be securely stored as a secret in a vault. References must follow a specific format.
    Snis []string
    Tags []string
    An optional set of strings associated with the Certificate for grouping and filtering.
    cert String
    PEM-encoded public certificate chain of the SSL key pair. This field is referenceable, which means it can be securely stored as a secret in a vault. References must follow a specific format.
    controlPlaneId String
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    key String
    PEM-encoded private key of the SSL key pair. This field is referenceable, which means it can be securely stored as a secret in a vault. References must follow a specific format.
    certAlt String
    PEM-encoded public certificate chain of the alternate SSL key pair. This should only be set if you have both RSA and ECDSA types of certificate available and would like Kong to prefer serving using ECDSA certs when client advertises support for it. This field is referenceable, which means it can be securely stored as a secret in a vault. References must follow a specific format.
    gatewayCertificateId String
    The ID of this resource.
    keyAlt String
    PEM-encoded private key of the alternate SSL key pair. This should only be set if you have both RSA and ECDSA types of certificate available and would like Kong to prefer serving using ECDSA certs when client advertises support for it. This field is referenceable, which means it can be securely stored as a secret in a vault. References must follow a specific format.
    snis List<String>
    tags List<String>
    An optional set of strings associated with the Certificate for grouping and filtering.
    cert string
    PEM-encoded public certificate chain of the SSL key pair. This field is referenceable, which means it can be securely stored as a secret in a vault. References must follow a specific format.
    controlPlaneId string
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    key string
    PEM-encoded private key of the SSL key pair. This field is referenceable, which means it can be securely stored as a secret in a vault. References must follow a specific format.
    certAlt string
    PEM-encoded public certificate chain of the alternate SSL key pair. This should only be set if you have both RSA and ECDSA types of certificate available and would like Kong to prefer serving using ECDSA certs when client advertises support for it. This field is referenceable, which means it can be securely stored as a secret in a vault. References must follow a specific format.
    gatewayCertificateId string
    The ID of this resource.
    keyAlt string
    PEM-encoded private key of the alternate SSL key pair. This should only be set if you have both RSA and ECDSA types of certificate available and would like Kong to prefer serving using ECDSA certs when client advertises support for it. This field is referenceable, which means it can be securely stored as a secret in a vault. References must follow a specific format.
    snis string[]
    tags string[]
    An optional set of strings associated with the Certificate for grouping and filtering.
    cert str
    PEM-encoded public certificate chain of the SSL key pair. This field is referenceable, which means it can be securely stored as a secret in a vault. References must follow a specific format.
    control_plane_id str
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    key str
    PEM-encoded private key of the SSL key pair. This field is referenceable, which means it can be securely stored as a secret in a vault. References must follow a specific format.
    cert_alt str
    PEM-encoded public certificate chain of the alternate SSL key pair. This should only be set if you have both RSA and ECDSA types of certificate available and would like Kong to prefer serving using ECDSA certs when client advertises support for it. This field is referenceable, which means it can be securely stored as a secret in a vault. References must follow a specific format.
    gateway_certificate_id str
    The ID of this resource.
    key_alt str
    PEM-encoded private key of the alternate SSL key pair. This should only be set if you have both RSA and ECDSA types of certificate available and would like Kong to prefer serving using ECDSA certs when client advertises support for it. This field is referenceable, which means it can be securely stored as a secret in a vault. References must follow a specific format.
    snis Sequence[str]
    tags Sequence[str]
    An optional set of strings associated with the Certificate for grouping and filtering.
    cert String
    PEM-encoded public certificate chain of the SSL key pair. This field is referenceable, which means it can be securely stored as a secret in a vault. References must follow a specific format.
    controlPlaneId String
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    key String
    PEM-encoded private key of the SSL key pair. This field is referenceable, which means it can be securely stored as a secret in a vault. References must follow a specific format.
    certAlt String
    PEM-encoded public certificate chain of the alternate SSL key pair. This should only be set if you have both RSA and ECDSA types of certificate available and would like Kong to prefer serving using ECDSA certs when client advertises support for it. This field is referenceable, which means it can be securely stored as a secret in a vault. References must follow a specific format.
    gatewayCertificateId String
    The ID of this resource.
    keyAlt String
    PEM-encoded private key of the alternate SSL key pair. This should only be set if you have both RSA and ECDSA types of certificate available and would like Kong to prefer serving using ECDSA certs when client advertises support for it. This field is referenceable, which means it can be securely stored as a secret in a vault. References must follow a specific format.
    snis List<String>
    tags List<String>
    An optional set of strings associated with the Certificate for grouping and filtering.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the GatewayCertificate resource produces the following output properties:

    CreatedAt double
    Unix epoch when the resource was created.
    Id string
    The provider-assigned unique ID for this managed resource.
    UpdatedAt double
    Unix epoch when the resource was last updated.
    CreatedAt float64
    Unix epoch when the resource was created.
    Id string
    The provider-assigned unique ID for this managed resource.
    UpdatedAt float64
    Unix epoch when the resource was last updated.
    createdAt Double
    Unix epoch when the resource was created.
    id String
    The provider-assigned unique ID for this managed resource.
    updatedAt Double
    Unix epoch when the resource was last updated.
    createdAt number
    Unix epoch when the resource was created.
    id string
    The provider-assigned unique ID for this managed resource.
    updatedAt number
    Unix epoch when the resource was last updated.
    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.
    createdAt Number
    Unix epoch when the resource was created.
    id String
    The provider-assigned unique ID for this managed resource.
    updatedAt Number
    Unix epoch when the resource was last updated.

    Look up Existing GatewayCertificate Resource

    Get an existing GatewayCertificate 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?: GatewayCertificateState, opts?: CustomResourceOptions): GatewayCertificate
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            cert: Optional[str] = None,
            cert_alt: Optional[str] = None,
            control_plane_id: Optional[str] = None,
            created_at: Optional[float] = None,
            gateway_certificate_id: Optional[str] = None,
            key: Optional[str] = None,
            key_alt: Optional[str] = None,
            snis: Optional[Sequence[str]] = None,
            tags: Optional[Sequence[str]] = None,
            updated_at: Optional[float] = None) -> GatewayCertificate
    func GetGatewayCertificate(ctx *Context, name string, id IDInput, state *GatewayCertificateState, opts ...ResourceOption) (*GatewayCertificate, error)
    public static GatewayCertificate Get(string name, Input<string> id, GatewayCertificateState? state, CustomResourceOptions? opts = null)
    public static GatewayCertificate get(String name, Output<String> id, GatewayCertificateState state, CustomResourceOptions options)
    resources:  _:    type: konnect:GatewayCertificate    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.
    The following state arguments are supported:
    Cert string
    PEM-encoded public certificate chain of the SSL key pair. This field is referenceable, which means it can be securely stored as a secret in a vault. References must follow a specific format.
    CertAlt string
    PEM-encoded public certificate chain of the alternate SSL key pair. This should only be set if you have both RSA and ECDSA types of certificate available and would like Kong to prefer serving using ECDSA certs when client advertises support for it. This field is referenceable, which means it can be securely stored as a secret in a vault. References must follow a specific format.
    ControlPlaneId string
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    CreatedAt double
    Unix epoch when the resource was created.
    GatewayCertificateId string
    The ID of this resource.
    Key string
    PEM-encoded private key of the SSL key pair. This field is referenceable, which means it can be securely stored as a secret in a vault. References must follow a specific format.
    KeyAlt string
    PEM-encoded private key of the alternate SSL key pair. This should only be set if you have both RSA and ECDSA types of certificate available and would like Kong to prefer serving using ECDSA certs when client advertises support for it. This field is referenceable, which means it can be securely stored as a secret in a vault. References must follow a specific format.
    Snis List<string>
    Tags List<string>
    An optional set of strings associated with the Certificate for grouping and filtering.
    UpdatedAt double
    Unix epoch when the resource was last updated.
    Cert string
    PEM-encoded public certificate chain of the SSL key pair. This field is referenceable, which means it can be securely stored as a secret in a vault. References must follow a specific format.
    CertAlt string
    PEM-encoded public certificate chain of the alternate SSL key pair. This should only be set if you have both RSA and ECDSA types of certificate available and would like Kong to prefer serving using ECDSA certs when client advertises support for it. This field is referenceable, which means it can be securely stored as a secret in a vault. References must follow a specific format.
    ControlPlaneId string
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    CreatedAt float64
    Unix epoch when the resource was created.
    GatewayCertificateId string
    The ID of this resource.
    Key string
    PEM-encoded private key of the SSL key pair. This field is referenceable, which means it can be securely stored as a secret in a vault. References must follow a specific format.
    KeyAlt string
    PEM-encoded private key of the alternate SSL key pair. This should only be set if you have both RSA and ECDSA types of certificate available and would like Kong to prefer serving using ECDSA certs when client advertises support for it. This field is referenceable, which means it can be securely stored as a secret in a vault. References must follow a specific format.
    Snis []string
    Tags []string
    An optional set of strings associated with the Certificate for grouping and filtering.
    UpdatedAt float64
    Unix epoch when the resource was last updated.
    cert String
    PEM-encoded public certificate chain of the SSL key pair. This field is referenceable, which means it can be securely stored as a secret in a vault. References must follow a specific format.
    certAlt String
    PEM-encoded public certificate chain of the alternate SSL key pair. This should only be set if you have both RSA and ECDSA types of certificate available and would like Kong to prefer serving using ECDSA certs when client advertises support for it. This field is referenceable, which means it can be securely stored as a secret in a vault. References must follow a specific format.
    controlPlaneId String
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    createdAt Double
    Unix epoch when the resource was created.
    gatewayCertificateId String
    The ID of this resource.
    key String
    PEM-encoded private key of the SSL key pair. This field is referenceable, which means it can be securely stored as a secret in a vault. References must follow a specific format.
    keyAlt String
    PEM-encoded private key of the alternate SSL key pair. This should only be set if you have both RSA and ECDSA types of certificate available and would like Kong to prefer serving using ECDSA certs when client advertises support for it. This field is referenceable, which means it can be securely stored as a secret in a vault. References must follow a specific format.
    snis List<String>
    tags List<String>
    An optional set of strings associated with the Certificate for grouping and filtering.
    updatedAt Double
    Unix epoch when the resource was last updated.
    cert string
    PEM-encoded public certificate chain of the SSL key pair. This field is referenceable, which means it can be securely stored as a secret in a vault. References must follow a specific format.
    certAlt string
    PEM-encoded public certificate chain of the alternate SSL key pair. This should only be set if you have both RSA and ECDSA types of certificate available and would like Kong to prefer serving using ECDSA certs when client advertises support for it. This field is referenceable, which means it can be securely stored as a secret in a vault. References must follow a specific format.
    controlPlaneId string
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    createdAt number
    Unix epoch when the resource was created.
    gatewayCertificateId string
    The ID of this resource.
    key string
    PEM-encoded private key of the SSL key pair. This field is referenceable, which means it can be securely stored as a secret in a vault. References must follow a specific format.
    keyAlt string
    PEM-encoded private key of the alternate SSL key pair. This should only be set if you have both RSA and ECDSA types of certificate available and would like Kong to prefer serving using ECDSA certs when client advertises support for it. This field is referenceable, which means it can be securely stored as a secret in a vault. References must follow a specific format.
    snis string[]
    tags string[]
    An optional set of strings associated with the Certificate for grouping and filtering.
    updatedAt number
    Unix epoch when the resource was last updated.
    cert str
    PEM-encoded public certificate chain of the SSL key pair. This field is referenceable, which means it can be securely stored as a secret in a vault. References must follow a specific format.
    cert_alt str
    PEM-encoded public certificate chain of the alternate SSL key pair. This should only be set if you have both RSA and ECDSA types of certificate available and would like Kong to prefer serving using ECDSA certs when client advertises support for it. This field is referenceable, which means it can be securely stored as a secret in a vault. References must follow a specific format.
    control_plane_id str
    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_certificate_id str
    The ID of this resource.
    key str
    PEM-encoded private key of the SSL key pair. This field is referenceable, which means it can be securely stored as a secret in a vault. References must follow a specific format.
    key_alt str
    PEM-encoded private key of the alternate SSL key pair. This should only be set if you have both RSA and ECDSA types of certificate available and would like Kong to prefer serving using ECDSA certs when client advertises support for it. This field is referenceable, which means it can be securely stored as a secret in a vault. References must follow a specific format.
    snis Sequence[str]
    tags Sequence[str]
    An optional set of strings associated with the Certificate for grouping and filtering.
    updated_at float
    Unix epoch when the resource was last updated.
    cert String
    PEM-encoded public certificate chain of the SSL key pair. This field is referenceable, which means it can be securely stored as a secret in a vault. References must follow a specific format.
    certAlt String
    PEM-encoded public certificate chain of the alternate SSL key pair. This should only be set if you have both RSA and ECDSA types of certificate available and would like Kong to prefer serving using ECDSA certs when client advertises support for it. This field is referenceable, which means it can be securely stored as a secret in a vault. References must follow a specific format.
    controlPlaneId String
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    createdAt Number
    Unix epoch when the resource was created.
    gatewayCertificateId String
    The ID of this resource.
    key String
    PEM-encoded private key of the SSL key pair. This field is referenceable, which means it can be securely stored as a secret in a vault. References must follow a specific format.
    keyAlt String
    PEM-encoded private key of the alternate SSL key pair. This should only be set if you have both RSA and ECDSA types of certificate available and would like Kong to prefer serving using ECDSA certs when client advertises support for it. This field is referenceable, which means it can be securely stored as a secret in a vault. References must follow a specific format.
    snis List<String>
    tags List<String>
    An optional set of strings associated with the Certificate for grouping and filtering.
    updatedAt Number
    Unix epoch when the resource was last updated.

    Import

    $ pulumi import konnect:index/gatewayCertificate:GatewayCertificate my_konnect_gateway_certificate "{ \"certificate_id\": \"ddf3cdaa-3329-4961-822a-ce6dbd38eff7\", \"control_plane_id\": \"9524ec7d-36d9-465d-a8c5-83a3c9390458\"}"
    

    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.
    konnect logo
    konnect 2.4.1 published on Thursday, Mar 13, 2025 by kong