1. Packages
  2. Packages
  3. Akeyless Provider
  4. API Docs
  5. GatewayTlsCert
Viewing docs for akeyless 2.0.1
published on Monday, Apr 27, 2026 by akeyless-community
Viewing docs for akeyless 2.0.1
published on Monday, Apr 27, 2026 by akeyless-community

    TLS certificate config for gateway

    Create GatewayTlsCert Resource

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

    Constructor syntax

    new GatewayTlsCert(name: string, args?: GatewayTlsCertArgs, opts?: CustomResourceOptions);
    @overload
    def GatewayTlsCert(resource_name: str,
                       args: Optional[GatewayTlsCertArgs] = None,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def GatewayTlsCert(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       cert_data: Optional[str] = None,
                       expiration_event_ins: Optional[Sequence[str]] = None,
                       gateway_tls_cert_id: Optional[str] = None,
                       key_data: Optional[str] = None)
    func NewGatewayTlsCert(ctx *Context, name string, args *GatewayTlsCertArgs, opts ...ResourceOption) (*GatewayTlsCert, error)
    public GatewayTlsCert(string name, GatewayTlsCertArgs? args = null, CustomResourceOptions? opts = null)
    public GatewayTlsCert(String name, GatewayTlsCertArgs args)
    public GatewayTlsCert(String name, GatewayTlsCertArgs args, CustomResourceOptions options)
    
    type: akeyless:GatewayTlsCert
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "akeyless_gatewaytlscert" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args GatewayTlsCertArgs
    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 GatewayTlsCertArgs
    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 GatewayTlsCertArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args GatewayTlsCertArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args GatewayTlsCertArgs
    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 gatewayTlsCertResource = new Akeyless.GatewayTlsCert("gatewayTlsCertResource", new()
    {
        CertData = "string",
        ExpirationEventIns = new[]
        {
            "string",
        },
        GatewayTlsCertId = "string",
        KeyData = "string",
    });
    
    example, err := akeyless.NewGatewayTlsCert(ctx, "gatewayTlsCertResource", &akeyless.GatewayTlsCertArgs{
    	CertData: pulumi.String("string"),
    	ExpirationEventIns: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	GatewayTlsCertId: pulumi.String("string"),
    	KeyData:          pulumi.String("string"),
    })
    
    resource "akeyless_gatewaytlscert" "gatewayTlsCertResource" {
      cert_data            = "string"
      expiration_event_ins = ["string"]
      gateway_tls_cert_id  = "string"
      key_data             = "string"
    }
    
    var gatewayTlsCertResource = new GatewayTlsCert("gatewayTlsCertResource", GatewayTlsCertArgs.builder()
        .certData("string")
        .expirationEventIns("string")
        .gatewayTlsCertId("string")
        .keyData("string")
        .build());
    
    gateway_tls_cert_resource = akeyless.GatewayTlsCert("gatewayTlsCertResource",
        cert_data="string",
        expiration_event_ins=["string"],
        gateway_tls_cert_id="string",
        key_data="string")
    
    const gatewayTlsCertResource = new akeyless.GatewayTlsCert("gatewayTlsCertResource", {
        certData: "string",
        expirationEventIns: ["string"],
        gatewayTlsCertId: "string",
        keyData: "string",
    });
    
    type: akeyless:GatewayTlsCert
    properties:
        certData: string
        expirationEventIns:
            - string
        gatewayTlsCertId: string
        keyData: string
    

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

    CertData string
    TLS certificate data (PEM format)
    ExpirationEventIns List<string>
    How many days before the TLS certificate expiration to trigger an expiration event (e.g. [60, 30, 10])
    GatewayTlsCertId string
    The ID of this resource.
    KeyData string
    TLS private key data (PEM format)
    CertData string
    TLS certificate data (PEM format)
    ExpirationEventIns []string
    How many days before the TLS certificate expiration to trigger an expiration event (e.g. [60, 30, 10])
    GatewayTlsCertId string
    The ID of this resource.
    KeyData string
    TLS private key data (PEM format)
    cert_data string
    TLS certificate data (PEM format)
    expiration_event_ins list(string)
    How many days before the TLS certificate expiration to trigger an expiration event (e.g. [60, 30, 10])
    gateway_tls_cert_id string
    The ID of this resource.
    key_data string
    TLS private key data (PEM format)
    certData String
    TLS certificate data (PEM format)
    expirationEventIns List<String>
    How many days before the TLS certificate expiration to trigger an expiration event (e.g. [60, 30, 10])
    gatewayTlsCertId String
    The ID of this resource.
    keyData String
    TLS private key data (PEM format)
    certData string
    TLS certificate data (PEM format)
    expirationEventIns string[]
    How many days before the TLS certificate expiration to trigger an expiration event (e.g. [60, 30, 10])
    gatewayTlsCertId string
    The ID of this resource.
    keyData string
    TLS private key data (PEM format)
    cert_data str
    TLS certificate data (PEM format)
    expiration_event_ins Sequence[str]
    How many days before the TLS certificate expiration to trigger an expiration event (e.g. [60, 30, 10])
    gateway_tls_cert_id str
    The ID of this resource.
    key_data str
    TLS private key data (PEM format)
    certData String
    TLS certificate data (PEM format)
    expirationEventIns List<String>
    How many days before the TLS certificate expiration to trigger an expiration event (e.g. [60, 30, 10])
    gatewayTlsCertId String
    The ID of this resource.
    keyData String
    TLS private key data (PEM format)

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing GatewayTlsCert Resource

    Get an existing GatewayTlsCert 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?: GatewayTlsCertState, opts?: CustomResourceOptions): GatewayTlsCert
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            cert_data: Optional[str] = None,
            expiration_event_ins: Optional[Sequence[str]] = None,
            gateway_tls_cert_id: Optional[str] = None,
            key_data: Optional[str] = None) -> GatewayTlsCert
    func GetGatewayTlsCert(ctx *Context, name string, id IDInput, state *GatewayTlsCertState, opts ...ResourceOption) (*GatewayTlsCert, error)
    public static GatewayTlsCert Get(string name, Input<string> id, GatewayTlsCertState? state, CustomResourceOptions? opts = null)
    public static GatewayTlsCert get(String name, Output<String> id, GatewayTlsCertState state, CustomResourceOptions options)
    resources:  _:    type: akeyless:GatewayTlsCert    get:      id: ${id}
    import {
      to = akeyless_gatewaytlscert.example
      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:
    CertData string
    TLS certificate data (PEM format)
    ExpirationEventIns List<string>
    How many days before the TLS certificate expiration to trigger an expiration event (e.g. [60, 30, 10])
    GatewayTlsCertId string
    The ID of this resource.
    KeyData string
    TLS private key data (PEM format)
    CertData string
    TLS certificate data (PEM format)
    ExpirationEventIns []string
    How many days before the TLS certificate expiration to trigger an expiration event (e.g. [60, 30, 10])
    GatewayTlsCertId string
    The ID of this resource.
    KeyData string
    TLS private key data (PEM format)
    cert_data string
    TLS certificate data (PEM format)
    expiration_event_ins list(string)
    How many days before the TLS certificate expiration to trigger an expiration event (e.g. [60, 30, 10])
    gateway_tls_cert_id string
    The ID of this resource.
    key_data string
    TLS private key data (PEM format)
    certData String
    TLS certificate data (PEM format)
    expirationEventIns List<String>
    How many days before the TLS certificate expiration to trigger an expiration event (e.g. [60, 30, 10])
    gatewayTlsCertId String
    The ID of this resource.
    keyData String
    TLS private key data (PEM format)
    certData string
    TLS certificate data (PEM format)
    expirationEventIns string[]
    How many days before the TLS certificate expiration to trigger an expiration event (e.g. [60, 30, 10])
    gatewayTlsCertId string
    The ID of this resource.
    keyData string
    TLS private key data (PEM format)
    cert_data str
    TLS certificate data (PEM format)
    expiration_event_ins Sequence[str]
    How many days before the TLS certificate expiration to trigger an expiration event (e.g. [60, 30, 10])
    gateway_tls_cert_id str
    The ID of this resource.
    key_data str
    TLS private key data (PEM format)
    certData String
    TLS certificate data (PEM format)
    expirationEventIns List<String>
    How many days before the TLS certificate expiration to trigger an expiration event (e.g. [60, 30, 10])
    gatewayTlsCertId String
    The ID of this resource.
    keyData String
    TLS private key data (PEM format)

    Package Details

    Repository
    akeyless akeyless-community/terraform-provider-akeyless
    License
    Notes
    This Pulumi package is based on the akeyless Terraform Provider.
    Viewing docs for akeyless 2.0.1
    published on Monday, Apr 27, 2026 by akeyless-community
      Try Pulumi Cloud free. Your team will thank you.