1. Packages
  2. Packages
  3. Akeyless Provider
  4. API Docs
  5. TargetDigicert
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

    DigiCert Target resource

    Create TargetDigicert Resource

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

    Constructor syntax

    new TargetDigicert(name: string, args: TargetDigicertArgs, opts?: CustomResourceOptions);
    @overload
    def TargetDigicert(resource_name: str,
                       args: TargetDigicertArgs,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def TargetDigicert(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       email: Optional[str] = None,
                       hosted_zone: Optional[str] = None,
                       max_versions: Optional[str] = None,
                       dns_target_creds: Optional[str] = None,
                       eab_hmac_key: Optional[str] = None,
                       eab_key_id: Optional[str] = None,
                       description: Optional[str] = None,
                       digicert_url: Optional[str] = None,
                       keep_prev_version: Optional[str] = None,
                       gcp_project: Optional[str] = None,
                       key: Optional[str] = None,
                       acme_challenge: Optional[str] = None,
                       name: Optional[str] = None,
                       resource_group: Optional[str] = None,
                       target_digicert_id: Optional[str] = None,
                       timeout: Optional[str] = None)
    func NewTargetDigicert(ctx *Context, name string, args TargetDigicertArgs, opts ...ResourceOption) (*TargetDigicert, error)
    public TargetDigicert(string name, TargetDigicertArgs args, CustomResourceOptions? opts = null)
    public TargetDigicert(String name, TargetDigicertArgs args)
    public TargetDigicert(String name, TargetDigicertArgs args, CustomResourceOptions options)
    
    type: akeyless:TargetDigicert
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "akeyless_targetdigicert" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args TargetDigicertArgs
    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 TargetDigicertArgs
    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 TargetDigicertArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args TargetDigicertArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args TargetDigicertArgs
    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 targetDigicertResource = new Akeyless.TargetDigicert("targetDigicertResource", new()
    {
        Email = "string",
        HostedZone = "string",
        MaxVersions = "string",
        DnsTargetCreds = "string",
        EabHmacKey = "string",
        EabKeyId = "string",
        Description = "string",
        DigicertUrl = "string",
        KeepPrevVersion = "string",
        GcpProject = "string",
        Key = "string",
        AcmeChallenge = "string",
        Name = "string",
        ResourceGroup = "string",
        TargetDigicertId = "string",
        Timeout = "string",
    });
    
    example, err := akeyless.NewTargetDigicert(ctx, "targetDigicertResource", &akeyless.TargetDigicertArgs{
    	Email:            pulumi.String("string"),
    	HostedZone:       pulumi.String("string"),
    	MaxVersions:      pulumi.String("string"),
    	DnsTargetCreds:   pulumi.String("string"),
    	EabHmacKey:       pulumi.String("string"),
    	EabKeyId:         pulumi.String("string"),
    	Description:      pulumi.String("string"),
    	DigicertUrl:      pulumi.String("string"),
    	KeepPrevVersion:  pulumi.String("string"),
    	GcpProject:       pulumi.String("string"),
    	Key:              pulumi.String("string"),
    	AcmeChallenge:    pulumi.String("string"),
    	Name:             pulumi.String("string"),
    	ResourceGroup:    pulumi.String("string"),
    	TargetDigicertId: pulumi.String("string"),
    	Timeout:          pulumi.String("string"),
    })
    
    resource "akeyless_targetdigicert" "targetDigicertResource" {
      email              = "string"
      hosted_zone        = "string"
      max_versions       = "string"
      dns_target_creds   = "string"
      eab_hmac_key       = "string"
      eab_key_id         = "string"
      description        = "string"
      digicert_url       = "string"
      keep_prev_version  = "string"
      gcp_project        = "string"
      key                = "string"
      acme_challenge     = "string"
      name               = "string"
      resource_group     = "string"
      target_digicert_id = "string"
      timeout            = "string"
    }
    
    var targetDigicertResource = new TargetDigicert("targetDigicertResource", TargetDigicertArgs.builder()
        .email("string")
        .hostedZone("string")
        .maxVersions("string")
        .dnsTargetCreds("string")
        .eabHmacKey("string")
        .eabKeyId("string")
        .description("string")
        .digicertUrl("string")
        .keepPrevVersion("string")
        .gcpProject("string")
        .key("string")
        .acmeChallenge("string")
        .name("string")
        .resourceGroup("string")
        .targetDigicertId("string")
        .timeout("string")
        .build());
    
    target_digicert_resource = akeyless.TargetDigicert("targetDigicertResource",
        email="string",
        hosted_zone="string",
        max_versions="string",
        dns_target_creds="string",
        eab_hmac_key="string",
        eab_key_id="string",
        description="string",
        digicert_url="string",
        keep_prev_version="string",
        gcp_project="string",
        key="string",
        acme_challenge="string",
        name="string",
        resource_group="string",
        target_digicert_id="string",
        timeout="string")
    
    const targetDigicertResource = new akeyless.TargetDigicert("targetDigicertResource", {
        email: "string",
        hostedZone: "string",
        maxVersions: "string",
        dnsTargetCreds: "string",
        eabHmacKey: "string",
        eabKeyId: "string",
        description: "string",
        digicertUrl: "string",
        keepPrevVersion: "string",
        gcpProject: "string",
        key: "string",
        acmeChallenge: "string",
        name: "string",
        resourceGroup: "string",
        targetDigicertId: "string",
        timeout: "string",
    });
    
    type: akeyless:TargetDigicert
    properties:
        acmeChallenge: string
        description: string
        digicertUrl: string
        dnsTargetCreds: string
        eabHmacKey: string
        eabKeyId: string
        email: string
        gcpProject: string
        hostedZone: string
        keepPrevVersion: string
        key: string
        maxVersions: string
        name: string
        resourceGroup: string
        targetDigicertId: string
        timeout: string
    

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

    Email string
    Email address for ACME account registration
    AcmeChallenge string
    ACME challenge type. Options: [dns]
    Description string
    Description of the object
    DigicertUrl string
    DigiCert ACME endpoint selector. Options: [us-production/eu-production/us-demo/eu-demo]
    DnsTargetCreds string
    Name of existing cloud target for DNS credentials. Required when challenge type is dns. Supported providers: AWS, Azure, GCP
    EabHmacKey string
    External Account Binding HMAC key (required for ACME account bootstrap on create)
    EabKeyId string
    External Account Binding key identifier (required for ACME account bootstrap on create)
    GcpProject string
    GCP Cloud DNS project ID. Optional and can be derived from service account
    HostedZone string
    AWS Route53 hosted zone ID. Required when DNS credentials target is AWS
    KeepPrevVersion string
    Whether to keep previous version [true/false]. If not set, use default according to account settings
    Key string
    The name of a key that used to encrypt the target secret value (if empty, the account default protectionKey key will be used)
    MaxVersions string
    Set the maximum number of versions, limited by the account settings defaults.
    Name string
    Target name
    ResourceGroup string
    Azure resource group name. Required when DNS credentials target is Azure
    TargetDigicertId string
    The ID of this resource.
    Timeout string
    Timeout for challenge validation
    Email string
    Email address for ACME account registration
    AcmeChallenge string
    ACME challenge type. Options: [dns]
    Description string
    Description of the object
    DigicertUrl string
    DigiCert ACME endpoint selector. Options: [us-production/eu-production/us-demo/eu-demo]
    DnsTargetCreds string
    Name of existing cloud target for DNS credentials. Required when challenge type is dns. Supported providers: AWS, Azure, GCP
    EabHmacKey string
    External Account Binding HMAC key (required for ACME account bootstrap on create)
    EabKeyId string
    External Account Binding key identifier (required for ACME account bootstrap on create)
    GcpProject string
    GCP Cloud DNS project ID. Optional and can be derived from service account
    HostedZone string
    AWS Route53 hosted zone ID. Required when DNS credentials target is AWS
    KeepPrevVersion string
    Whether to keep previous version [true/false]. If not set, use default according to account settings
    Key string
    The name of a key that used to encrypt the target secret value (if empty, the account default protectionKey key will be used)
    MaxVersions string
    Set the maximum number of versions, limited by the account settings defaults.
    Name string
    Target name
    ResourceGroup string
    Azure resource group name. Required when DNS credentials target is Azure
    TargetDigicertId string
    The ID of this resource.
    Timeout string
    Timeout for challenge validation
    email string
    Email address for ACME account registration
    acme_challenge string
    ACME challenge type. Options: [dns]
    description string
    Description of the object
    digicert_url string
    DigiCert ACME endpoint selector. Options: [us-production/eu-production/us-demo/eu-demo]
    dns_target_creds string
    Name of existing cloud target for DNS credentials. Required when challenge type is dns. Supported providers: AWS, Azure, GCP
    eab_hmac_key string
    External Account Binding HMAC key (required for ACME account bootstrap on create)
    eab_key_id string
    External Account Binding key identifier (required for ACME account bootstrap on create)
    gcp_project string
    GCP Cloud DNS project ID. Optional and can be derived from service account
    hosted_zone string
    AWS Route53 hosted zone ID. Required when DNS credentials target is AWS
    keep_prev_version string
    Whether to keep previous version [true/false]. If not set, use default according to account settings
    key string
    The name of a key that used to encrypt the target secret value (if empty, the account default protectionKey key will be used)
    max_versions string
    Set the maximum number of versions, limited by the account settings defaults.
    name string
    Target name
    resource_group string
    Azure resource group name. Required when DNS credentials target is Azure
    target_digicert_id string
    The ID of this resource.
    timeout string
    Timeout for challenge validation
    email String
    Email address for ACME account registration
    acmeChallenge String
    ACME challenge type. Options: [dns]
    description String
    Description of the object
    digicertUrl String
    DigiCert ACME endpoint selector. Options: [us-production/eu-production/us-demo/eu-demo]
    dnsTargetCreds String
    Name of existing cloud target for DNS credentials. Required when challenge type is dns. Supported providers: AWS, Azure, GCP
    eabHmacKey String
    External Account Binding HMAC key (required for ACME account bootstrap on create)
    eabKeyId String
    External Account Binding key identifier (required for ACME account bootstrap on create)
    gcpProject String
    GCP Cloud DNS project ID. Optional and can be derived from service account
    hostedZone String
    AWS Route53 hosted zone ID. Required when DNS credentials target is AWS
    keepPrevVersion String
    Whether to keep previous version [true/false]. If not set, use default according to account settings
    key String
    The name of a key that used to encrypt the target secret value (if empty, the account default protectionKey key will be used)
    maxVersions String
    Set the maximum number of versions, limited by the account settings defaults.
    name String
    Target name
    resourceGroup String
    Azure resource group name. Required when DNS credentials target is Azure
    targetDigicertId String
    The ID of this resource.
    timeout String
    Timeout for challenge validation
    email string
    Email address for ACME account registration
    acmeChallenge string
    ACME challenge type. Options: [dns]
    description string
    Description of the object
    digicertUrl string
    DigiCert ACME endpoint selector. Options: [us-production/eu-production/us-demo/eu-demo]
    dnsTargetCreds string
    Name of existing cloud target for DNS credentials. Required when challenge type is dns. Supported providers: AWS, Azure, GCP
    eabHmacKey string
    External Account Binding HMAC key (required for ACME account bootstrap on create)
    eabKeyId string
    External Account Binding key identifier (required for ACME account bootstrap on create)
    gcpProject string
    GCP Cloud DNS project ID. Optional and can be derived from service account
    hostedZone string
    AWS Route53 hosted zone ID. Required when DNS credentials target is AWS
    keepPrevVersion string
    Whether to keep previous version [true/false]. If not set, use default according to account settings
    key string
    The name of a key that used to encrypt the target secret value (if empty, the account default protectionKey key will be used)
    maxVersions string
    Set the maximum number of versions, limited by the account settings defaults.
    name string
    Target name
    resourceGroup string
    Azure resource group name. Required when DNS credentials target is Azure
    targetDigicertId string
    The ID of this resource.
    timeout string
    Timeout for challenge validation
    email str
    Email address for ACME account registration
    acme_challenge str
    ACME challenge type. Options: [dns]
    description str
    Description of the object
    digicert_url str
    DigiCert ACME endpoint selector. Options: [us-production/eu-production/us-demo/eu-demo]
    dns_target_creds str
    Name of existing cloud target for DNS credentials. Required when challenge type is dns. Supported providers: AWS, Azure, GCP
    eab_hmac_key str
    External Account Binding HMAC key (required for ACME account bootstrap on create)
    eab_key_id str
    External Account Binding key identifier (required for ACME account bootstrap on create)
    gcp_project str
    GCP Cloud DNS project ID. Optional and can be derived from service account
    hosted_zone str
    AWS Route53 hosted zone ID. Required when DNS credentials target is AWS
    keep_prev_version str
    Whether to keep previous version [true/false]. If not set, use default according to account settings
    key str
    The name of a key that used to encrypt the target secret value (if empty, the account default protectionKey key will be used)
    max_versions str
    Set the maximum number of versions, limited by the account settings defaults.
    name str
    Target name
    resource_group str
    Azure resource group name. Required when DNS credentials target is Azure
    target_digicert_id str
    The ID of this resource.
    timeout str
    Timeout for challenge validation
    email String
    Email address for ACME account registration
    acmeChallenge String
    ACME challenge type. Options: [dns]
    description String
    Description of the object
    digicertUrl String
    DigiCert ACME endpoint selector. Options: [us-production/eu-production/us-demo/eu-demo]
    dnsTargetCreds String
    Name of existing cloud target for DNS credentials. Required when challenge type is dns. Supported providers: AWS, Azure, GCP
    eabHmacKey String
    External Account Binding HMAC key (required for ACME account bootstrap on create)
    eabKeyId String
    External Account Binding key identifier (required for ACME account bootstrap on create)
    gcpProject String
    GCP Cloud DNS project ID. Optional and can be derived from service account
    hostedZone String
    AWS Route53 hosted zone ID. Required when DNS credentials target is AWS
    keepPrevVersion String
    Whether to keep previous version [true/false]. If not set, use default according to account settings
    key String
    The name of a key that used to encrypt the target secret value (if empty, the account default protectionKey key will be used)
    maxVersions String
    Set the maximum number of versions, limited by the account settings defaults.
    name String
    Target name
    resourceGroup String
    Azure resource group name. Required when DNS credentials target is Azure
    targetDigicertId String
    The ID of this resource.
    timeout String
    Timeout for challenge validation

    Outputs

    All input properties are implicitly available as output properties. Additionally, the TargetDigicert 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 TargetDigicert Resource

    Get an existing TargetDigicert 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?: TargetDigicertState, opts?: CustomResourceOptions): TargetDigicert
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            acme_challenge: Optional[str] = None,
            description: Optional[str] = None,
            digicert_url: Optional[str] = None,
            dns_target_creds: Optional[str] = None,
            eab_hmac_key: Optional[str] = None,
            eab_key_id: Optional[str] = None,
            email: Optional[str] = None,
            gcp_project: Optional[str] = None,
            hosted_zone: Optional[str] = None,
            keep_prev_version: Optional[str] = None,
            key: Optional[str] = None,
            max_versions: Optional[str] = None,
            name: Optional[str] = None,
            resource_group: Optional[str] = None,
            target_digicert_id: Optional[str] = None,
            timeout: Optional[str] = None) -> TargetDigicert
    func GetTargetDigicert(ctx *Context, name string, id IDInput, state *TargetDigicertState, opts ...ResourceOption) (*TargetDigicert, error)
    public static TargetDigicert Get(string name, Input<string> id, TargetDigicertState? state, CustomResourceOptions? opts = null)
    public static TargetDigicert get(String name, Output<String> id, TargetDigicertState state, CustomResourceOptions options)
    resources:  _:    type: akeyless:TargetDigicert    get:      id: ${id}
    import {
      to = akeyless_targetdigicert.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:
    AcmeChallenge string
    ACME challenge type. Options: [dns]
    Description string
    Description of the object
    DigicertUrl string
    DigiCert ACME endpoint selector. Options: [us-production/eu-production/us-demo/eu-demo]
    DnsTargetCreds string
    Name of existing cloud target for DNS credentials. Required when challenge type is dns. Supported providers: AWS, Azure, GCP
    EabHmacKey string
    External Account Binding HMAC key (required for ACME account bootstrap on create)
    EabKeyId string
    External Account Binding key identifier (required for ACME account bootstrap on create)
    Email string
    Email address for ACME account registration
    GcpProject string
    GCP Cloud DNS project ID. Optional and can be derived from service account
    HostedZone string
    AWS Route53 hosted zone ID. Required when DNS credentials target is AWS
    KeepPrevVersion string
    Whether to keep previous version [true/false]. If not set, use default according to account settings
    Key string
    The name of a key that used to encrypt the target secret value (if empty, the account default protectionKey key will be used)
    MaxVersions string
    Set the maximum number of versions, limited by the account settings defaults.
    Name string
    Target name
    ResourceGroup string
    Azure resource group name. Required when DNS credentials target is Azure
    TargetDigicertId string
    The ID of this resource.
    Timeout string
    Timeout for challenge validation
    AcmeChallenge string
    ACME challenge type. Options: [dns]
    Description string
    Description of the object
    DigicertUrl string
    DigiCert ACME endpoint selector. Options: [us-production/eu-production/us-demo/eu-demo]
    DnsTargetCreds string
    Name of existing cloud target for DNS credentials. Required when challenge type is dns. Supported providers: AWS, Azure, GCP
    EabHmacKey string
    External Account Binding HMAC key (required for ACME account bootstrap on create)
    EabKeyId string
    External Account Binding key identifier (required for ACME account bootstrap on create)
    Email string
    Email address for ACME account registration
    GcpProject string
    GCP Cloud DNS project ID. Optional and can be derived from service account
    HostedZone string
    AWS Route53 hosted zone ID. Required when DNS credentials target is AWS
    KeepPrevVersion string
    Whether to keep previous version [true/false]. If not set, use default according to account settings
    Key string
    The name of a key that used to encrypt the target secret value (if empty, the account default protectionKey key will be used)
    MaxVersions string
    Set the maximum number of versions, limited by the account settings defaults.
    Name string
    Target name
    ResourceGroup string
    Azure resource group name. Required when DNS credentials target is Azure
    TargetDigicertId string
    The ID of this resource.
    Timeout string
    Timeout for challenge validation
    acme_challenge string
    ACME challenge type. Options: [dns]
    description string
    Description of the object
    digicert_url string
    DigiCert ACME endpoint selector. Options: [us-production/eu-production/us-demo/eu-demo]
    dns_target_creds string
    Name of existing cloud target for DNS credentials. Required when challenge type is dns. Supported providers: AWS, Azure, GCP
    eab_hmac_key string
    External Account Binding HMAC key (required for ACME account bootstrap on create)
    eab_key_id string
    External Account Binding key identifier (required for ACME account bootstrap on create)
    email string
    Email address for ACME account registration
    gcp_project string
    GCP Cloud DNS project ID. Optional and can be derived from service account
    hosted_zone string
    AWS Route53 hosted zone ID. Required when DNS credentials target is AWS
    keep_prev_version string
    Whether to keep previous version [true/false]. If not set, use default according to account settings
    key string
    The name of a key that used to encrypt the target secret value (if empty, the account default protectionKey key will be used)
    max_versions string
    Set the maximum number of versions, limited by the account settings defaults.
    name string
    Target name
    resource_group string
    Azure resource group name. Required when DNS credentials target is Azure
    target_digicert_id string
    The ID of this resource.
    timeout string
    Timeout for challenge validation
    acmeChallenge String
    ACME challenge type. Options: [dns]
    description String
    Description of the object
    digicertUrl String
    DigiCert ACME endpoint selector. Options: [us-production/eu-production/us-demo/eu-demo]
    dnsTargetCreds String
    Name of existing cloud target for DNS credentials. Required when challenge type is dns. Supported providers: AWS, Azure, GCP
    eabHmacKey String
    External Account Binding HMAC key (required for ACME account bootstrap on create)
    eabKeyId String
    External Account Binding key identifier (required for ACME account bootstrap on create)
    email String
    Email address for ACME account registration
    gcpProject String
    GCP Cloud DNS project ID. Optional and can be derived from service account
    hostedZone String
    AWS Route53 hosted zone ID. Required when DNS credentials target is AWS
    keepPrevVersion String
    Whether to keep previous version [true/false]. If not set, use default according to account settings
    key String
    The name of a key that used to encrypt the target secret value (if empty, the account default protectionKey key will be used)
    maxVersions String
    Set the maximum number of versions, limited by the account settings defaults.
    name String
    Target name
    resourceGroup String
    Azure resource group name. Required when DNS credentials target is Azure
    targetDigicertId String
    The ID of this resource.
    timeout String
    Timeout for challenge validation
    acmeChallenge string
    ACME challenge type. Options: [dns]
    description string
    Description of the object
    digicertUrl string
    DigiCert ACME endpoint selector. Options: [us-production/eu-production/us-demo/eu-demo]
    dnsTargetCreds string
    Name of existing cloud target for DNS credentials. Required when challenge type is dns. Supported providers: AWS, Azure, GCP
    eabHmacKey string
    External Account Binding HMAC key (required for ACME account bootstrap on create)
    eabKeyId string
    External Account Binding key identifier (required for ACME account bootstrap on create)
    email string
    Email address for ACME account registration
    gcpProject string
    GCP Cloud DNS project ID. Optional and can be derived from service account
    hostedZone string
    AWS Route53 hosted zone ID. Required when DNS credentials target is AWS
    keepPrevVersion string
    Whether to keep previous version [true/false]. If not set, use default according to account settings
    key string
    The name of a key that used to encrypt the target secret value (if empty, the account default protectionKey key will be used)
    maxVersions string
    Set the maximum number of versions, limited by the account settings defaults.
    name string
    Target name
    resourceGroup string
    Azure resource group name. Required when DNS credentials target is Azure
    targetDigicertId string
    The ID of this resource.
    timeout string
    Timeout for challenge validation
    acme_challenge str
    ACME challenge type. Options: [dns]
    description str
    Description of the object
    digicert_url str
    DigiCert ACME endpoint selector. Options: [us-production/eu-production/us-demo/eu-demo]
    dns_target_creds str
    Name of existing cloud target for DNS credentials. Required when challenge type is dns. Supported providers: AWS, Azure, GCP
    eab_hmac_key str
    External Account Binding HMAC key (required for ACME account bootstrap on create)
    eab_key_id str
    External Account Binding key identifier (required for ACME account bootstrap on create)
    email str
    Email address for ACME account registration
    gcp_project str
    GCP Cloud DNS project ID. Optional and can be derived from service account
    hosted_zone str
    AWS Route53 hosted zone ID. Required when DNS credentials target is AWS
    keep_prev_version str
    Whether to keep previous version [true/false]. If not set, use default according to account settings
    key str
    The name of a key that used to encrypt the target secret value (if empty, the account default protectionKey key will be used)
    max_versions str
    Set the maximum number of versions, limited by the account settings defaults.
    name str
    Target name
    resource_group str
    Azure resource group name. Required when DNS credentials target is Azure
    target_digicert_id str
    The ID of this resource.
    timeout str
    Timeout for challenge validation
    acmeChallenge String
    ACME challenge type. Options: [dns]
    description String
    Description of the object
    digicertUrl String
    DigiCert ACME endpoint selector. Options: [us-production/eu-production/us-demo/eu-demo]
    dnsTargetCreds String
    Name of existing cloud target for DNS credentials. Required when challenge type is dns. Supported providers: AWS, Azure, GCP
    eabHmacKey String
    External Account Binding HMAC key (required for ACME account bootstrap on create)
    eabKeyId String
    External Account Binding key identifier (required for ACME account bootstrap on create)
    email String
    Email address for ACME account registration
    gcpProject String
    GCP Cloud DNS project ID. Optional and can be derived from service account
    hostedZone String
    AWS Route53 hosted zone ID. Required when DNS credentials target is AWS
    keepPrevVersion String
    Whether to keep previous version [true/false]. If not set, use default according to account settings
    key String
    The name of a key that used to encrypt the target secret value (if empty, the account default protectionKey key will be used)
    maxVersions String
    Set the maximum number of versions, limited by the account settings defaults.
    name String
    Target name
    resourceGroup String
    Azure resource group name. Required when DNS credentials target is Azure
    targetDigicertId String
    The ID of this resource.
    timeout String
    Timeout for challenge validation

    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.