1. Packages
  2. Proxmox Virtual Environment (Proxmox VE)
  3. API Docs
  4. acme
  5. Certificate
Viewing docs for Proxmox Virtual Environment (Proxmox VE) v8.0.0
published on Sunday, Apr 5, 2026 by Daniel Muehlbachler-Pietrzykowski
proxmoxve logo
Viewing docs for Proxmox Virtual Environment (Proxmox VE) v8.0.0
published on Sunday, Apr 5, 2026 by Daniel Muehlbachler-Pietrzykowski

    Manages ACME SSL certificates for Proxmox VE nodes.

    This resource orders and renews certificates from an ACME Certificate Authority (like Let’s Encrypt) for a specific node. Before using this resource, ensure that:

    • An ACME account is configured (using proxmoxve.acme.Account)
    • DNS plugins are configured if using DNS-01 challenge (using proxmoxve.acme/dns.Plugin)

    Create Certificate Resource

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

    Constructor syntax

    new Certificate(name: string, args: CertificateArgs, opts?: CustomResourceOptions);
    @overload
    def Certificate(resource_name: str,
                    args: CertificateArgs,
                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def Certificate(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    account: Optional[str] = None,
                    domains: Optional[Sequence[CertificateDomainArgs]] = None,
                    node_name: Optional[str] = None,
                    force: Optional[bool] = None)
    func NewCertificate(ctx *Context, name string, args CertificateArgs, opts ...ResourceOption) (*Certificate, error)
    public Certificate(string name, CertificateArgs args, CustomResourceOptions? opts = null)
    public Certificate(String name, CertificateArgs args)
    public Certificate(String name, CertificateArgs args, CustomResourceOptions options)
    
    type: proxmoxve:acme:Certificate
    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 CertificateArgs
    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 CertificateArgs
    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 CertificateArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CertificateArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CertificateArgs
    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 certificateResource = new ProxmoxVE.Acme.Certificate("certificateResource", new()
    {
        Account = "string",
        Domains = new[]
        {
            new ProxmoxVE.Acme.Inputs.CertificateDomainArgs
            {
                Domain = "string",
                Alias = "string",
                Plugin = "string",
            },
        },
        NodeName = "string",
        Force = false,
    });
    
    example, err := acme.NewCertificate(ctx, "certificateResource", &acme.CertificateArgs{
    	Account: pulumi.String("string"),
    	Domains: acme.CertificateDomainArray{
    		&acme.CertificateDomainArgs{
    			Domain: pulumi.String("string"),
    			Alias:  pulumi.String("string"),
    			Plugin: pulumi.String("string"),
    		},
    	},
    	NodeName: pulumi.String("string"),
    	Force:    pulumi.Bool(false),
    })
    
    var certificateResource = new Certificate("certificateResource", CertificateArgs.builder()
        .account("string")
        .domains(CertificateDomainArgs.builder()
            .domain("string")
            .alias("string")
            .plugin("string")
            .build())
        .nodeName("string")
        .force(false)
        .build());
    
    certificate_resource = proxmoxve.acme.Certificate("certificateResource",
        account="string",
        domains=[{
            "domain": "string",
            "alias": "string",
            "plugin": "string",
        }],
        node_name="string",
        force=False)
    
    const certificateResource = new proxmoxve.acme.Certificate("certificateResource", {
        account: "string",
        domains: [{
            domain: "string",
            alias: "string",
            plugin: "string",
        }],
        nodeName: "string",
        force: false,
    });
    
    type: proxmoxve:acme:Certificate
    properties:
        account: string
        domains:
            - alias: string
              domain: string
              plugin: string
        force: false
        nodeName: string
    

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

    Account string
    The ACME account name to use for ordering the certificate.
    Domains List<Pulumi.ProxmoxVE.Acme.Inputs.CertificateDomain>
    The list of domains to include in the certificate. At least one domain is required.
    NodeName string
    The name of the Proxmox VE node for which to order/manage the ACME certificate.
    Force bool
    Force certificate renewal even if the certificate is not due for renewal yet. Setting this to true will trigger a new certificate order on every apply.
    Account string
    The ACME account name to use for ordering the certificate.
    Domains []CertificateDomainArgs
    The list of domains to include in the certificate. At least one domain is required.
    NodeName string
    The name of the Proxmox VE node for which to order/manage the ACME certificate.
    Force bool
    Force certificate renewal even if the certificate is not due for renewal yet. Setting this to true will trigger a new certificate order on every apply.
    account String
    The ACME account name to use for ordering the certificate.
    domains List<CertificateDomain>
    The list of domains to include in the certificate. At least one domain is required.
    nodeName String
    The name of the Proxmox VE node for which to order/manage the ACME certificate.
    force Boolean
    Force certificate renewal even if the certificate is not due for renewal yet. Setting this to true will trigger a new certificate order on every apply.
    account string
    The ACME account name to use for ordering the certificate.
    domains CertificateDomain[]
    The list of domains to include in the certificate. At least one domain is required.
    nodeName string
    The name of the Proxmox VE node for which to order/manage the ACME certificate.
    force boolean
    Force certificate renewal even if the certificate is not due for renewal yet. Setting this to true will trigger a new certificate order on every apply.
    account str
    The ACME account name to use for ordering the certificate.
    domains Sequence[CertificateDomainArgs]
    The list of domains to include in the certificate. At least one domain is required.
    node_name str
    The name of the Proxmox VE node for which to order/manage the ACME certificate.
    force bool
    Force certificate renewal even if the certificate is not due for renewal yet. Setting this to true will trigger a new certificate order on every apply.
    account String
    The ACME account name to use for ordering the certificate.
    domains List<Property Map>
    The list of domains to include in the certificate. At least one domain is required.
    nodeName String
    The name of the Proxmox VE node for which to order/manage the ACME certificate.
    force Boolean
    Force certificate renewal even if the certificate is not due for renewal yet. Setting this to true will trigger a new certificate order on every apply.

    Outputs

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

    Fingerprint string
    The certificate fingerprint.
    Id string
    The provider-assigned unique ID for this managed resource.
    Issuer string
    The certificate issuer.
    NotAfter string
    The certificate expiration timestamp.
    NotBefore string
    The certificate start timestamp.
    Subject string
    The certificate subject.
    SubjectAlternativeNames List<string>
    The certificate subject alternative names (SANs).
    certificatePem string
    The PEM-encoded certificate data.
    Certificate string
    The PEM-encoded certificate data.
    Fingerprint string
    The certificate fingerprint.
    Id string
    The provider-assigned unique ID for this managed resource.
    Issuer string
    The certificate issuer.
    NotAfter string
    The certificate expiration timestamp.
    NotBefore string
    The certificate start timestamp.
    Subject string
    The certificate subject.
    SubjectAlternativeNames []string
    The certificate subject alternative names (SANs).
    certificate String
    The PEM-encoded certificate data.
    fingerprint String
    The certificate fingerprint.
    id String
    The provider-assigned unique ID for this managed resource.
    issuer String
    The certificate issuer.
    notAfter String
    The certificate expiration timestamp.
    notBefore String
    The certificate start timestamp.
    subject String
    The certificate subject.
    subjectAlternativeNames List<String>
    The certificate subject alternative names (SANs).
    certificate string
    The PEM-encoded certificate data.
    fingerprint string
    The certificate fingerprint.
    id string
    The provider-assigned unique ID for this managed resource.
    issuer string
    The certificate issuer.
    notAfter string
    The certificate expiration timestamp.
    notBefore string
    The certificate start timestamp.
    subject string
    The certificate subject.
    subjectAlternativeNames string[]
    The certificate subject alternative names (SANs).
    certificate str
    The PEM-encoded certificate data.
    fingerprint str
    The certificate fingerprint.
    id str
    The provider-assigned unique ID for this managed resource.
    issuer str
    The certificate issuer.
    not_after str
    The certificate expiration timestamp.
    not_before str
    The certificate start timestamp.
    subject str
    The certificate subject.
    subject_alternative_names Sequence[str]
    The certificate subject alternative names (SANs).
    certificate String
    The PEM-encoded certificate data.
    fingerprint String
    The certificate fingerprint.
    id String
    The provider-assigned unique ID for this managed resource.
    issuer String
    The certificate issuer.
    notAfter String
    The certificate expiration timestamp.
    notBefore String
    The certificate start timestamp.
    subject String
    The certificate subject.
    subjectAlternativeNames List<String>
    The certificate subject alternative names (SANs).

    Look up Existing Certificate Resource

    Get an existing Certificate 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?: CertificateState, opts?: CustomResourceOptions): Certificate
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            account: Optional[str] = None,
            certificate: Optional[str] = None,
            domains: Optional[Sequence[CertificateDomainArgs]] = None,
            fingerprint: Optional[str] = None,
            force: Optional[bool] = None,
            issuer: Optional[str] = None,
            node_name: Optional[str] = None,
            not_after: Optional[str] = None,
            not_before: Optional[str] = None,
            subject: Optional[str] = None,
            subject_alternative_names: Optional[Sequence[str]] = None) -> Certificate
    func GetCertificate(ctx *Context, name string, id IDInput, state *CertificateState, opts ...ResourceOption) (*Certificate, error)
    public static Certificate Get(string name, Input<string> id, CertificateState? state, CustomResourceOptions? opts = null)
    public static Certificate get(String name, Output<String> id, CertificateState state, CustomResourceOptions options)
    resources:  _:    type: proxmoxve:acme:Certificate    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:
    Account string
    The ACME account name to use for ordering the certificate.
    Domains List<Pulumi.ProxmoxVE.Acme.Inputs.CertificateDomain>
    The list of domains to include in the certificate. At least one domain is required.
    Fingerprint string
    The certificate fingerprint.
    Force bool
    Force certificate renewal even if the certificate is not due for renewal yet. Setting this to true will trigger a new certificate order on every apply.
    Issuer string
    The certificate issuer.
    NodeName string
    The name of the Proxmox VE node for which to order/manage the ACME certificate.
    NotAfter string
    The certificate expiration timestamp.
    NotBefore string
    The certificate start timestamp.
    Subject string
    The certificate subject.
    SubjectAlternativeNames List<string>
    The certificate subject alternative names (SANs).
    certificatePem string
    The PEM-encoded certificate data.
    Account string
    The ACME account name to use for ordering the certificate.
    Certificate string
    The PEM-encoded certificate data.
    Domains []CertificateDomainArgs
    The list of domains to include in the certificate. At least one domain is required.
    Fingerprint string
    The certificate fingerprint.
    Force bool
    Force certificate renewal even if the certificate is not due for renewal yet. Setting this to true will trigger a new certificate order on every apply.
    Issuer string
    The certificate issuer.
    NodeName string
    The name of the Proxmox VE node for which to order/manage the ACME certificate.
    NotAfter string
    The certificate expiration timestamp.
    NotBefore string
    The certificate start timestamp.
    Subject string
    The certificate subject.
    SubjectAlternativeNames []string
    The certificate subject alternative names (SANs).
    account String
    The ACME account name to use for ordering the certificate.
    certificate String
    The PEM-encoded certificate data.
    domains List<CertificateDomain>
    The list of domains to include in the certificate. At least one domain is required.
    fingerprint String
    The certificate fingerprint.
    force Boolean
    Force certificate renewal even if the certificate is not due for renewal yet. Setting this to true will trigger a new certificate order on every apply.
    issuer String
    The certificate issuer.
    nodeName String
    The name of the Proxmox VE node for which to order/manage the ACME certificate.
    notAfter String
    The certificate expiration timestamp.
    notBefore String
    The certificate start timestamp.
    subject String
    The certificate subject.
    subjectAlternativeNames List<String>
    The certificate subject alternative names (SANs).
    account string
    The ACME account name to use for ordering the certificate.
    certificate string
    The PEM-encoded certificate data.
    domains CertificateDomain[]
    The list of domains to include in the certificate. At least one domain is required.
    fingerprint string
    The certificate fingerprint.
    force boolean
    Force certificate renewal even if the certificate is not due for renewal yet. Setting this to true will trigger a new certificate order on every apply.
    issuer string
    The certificate issuer.
    nodeName string
    The name of the Proxmox VE node for which to order/manage the ACME certificate.
    notAfter string
    The certificate expiration timestamp.
    notBefore string
    The certificate start timestamp.
    subject string
    The certificate subject.
    subjectAlternativeNames string[]
    The certificate subject alternative names (SANs).
    account str
    The ACME account name to use for ordering the certificate.
    certificate str
    The PEM-encoded certificate data.
    domains Sequence[CertificateDomainArgs]
    The list of domains to include in the certificate. At least one domain is required.
    fingerprint str
    The certificate fingerprint.
    force bool
    Force certificate renewal even if the certificate is not due for renewal yet. Setting this to true will trigger a new certificate order on every apply.
    issuer str
    The certificate issuer.
    node_name str
    The name of the Proxmox VE node for which to order/manage the ACME certificate.
    not_after str
    The certificate expiration timestamp.
    not_before str
    The certificate start timestamp.
    subject str
    The certificate subject.
    subject_alternative_names Sequence[str]
    The certificate subject alternative names (SANs).
    account String
    The ACME account name to use for ordering the certificate.
    certificate String
    The PEM-encoded certificate data.
    domains List<Property Map>
    The list of domains to include in the certificate. At least one domain is required.
    fingerprint String
    The certificate fingerprint.
    force Boolean
    Force certificate renewal even if the certificate is not due for renewal yet. Setting this to true will trigger a new certificate order on every apply.
    issuer String
    The certificate issuer.
    nodeName String
    The name of the Proxmox VE node for which to order/manage the ACME certificate.
    notAfter String
    The certificate expiration timestamp.
    notBefore String
    The certificate start timestamp.
    subject String
    The certificate subject.
    subjectAlternativeNames List<String>
    The certificate subject alternative names (SANs).

    Supporting Types

    CertificateDomain, CertificateDomainArgs

    Domain string
    The domain name to include in the certificate.
    Alias string
    An optional alias domain for DNS validation. This allows you to validate the domain using a different domain's DNS records.
    Plugin string
    The DNS plugin to use for DNS-01 challenge validation. If not specified, the standalone HTTP-01 challenge will be used.
    Domain string
    The domain name to include in the certificate.
    Alias string
    An optional alias domain for DNS validation. This allows you to validate the domain using a different domain's DNS records.
    Plugin string
    The DNS plugin to use for DNS-01 challenge validation. If not specified, the standalone HTTP-01 challenge will be used.
    domain String
    The domain name to include in the certificate.
    alias String
    An optional alias domain for DNS validation. This allows you to validate the domain using a different domain's DNS records.
    plugin String
    The DNS plugin to use for DNS-01 challenge validation. If not specified, the standalone HTTP-01 challenge will be used.
    domain string
    The domain name to include in the certificate.
    alias string
    An optional alias domain for DNS validation. This allows you to validate the domain using a different domain's DNS records.
    plugin string
    The DNS plugin to use for DNS-01 challenge validation. If not specified, the standalone HTTP-01 challenge will be used.
    domain str
    The domain name to include in the certificate.
    alias str
    An optional alias domain for DNS validation. This allows you to validate the domain using a different domain's DNS records.
    plugin str
    The DNS plugin to use for DNS-01 challenge validation. If not specified, the standalone HTTP-01 challenge will be used.
    domain String
    The domain name to include in the certificate.
    alias String
    An optional alias domain for DNS validation. This allows you to validate the domain using a different domain's DNS records.
    plugin String
    The DNS plugin to use for DNS-01 challenge validation. If not specified, the standalone HTTP-01 challenge will be used.

    Package Details

    Repository
    proxmoxve muhlba91/pulumi-proxmoxve
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the proxmox Terraform Provider.
    proxmoxve logo
    Viewing docs for Proxmox Virtual Environment (Proxmox VE) v8.0.0
    published on Sunday, Apr 5, 2026 by Daniel Muehlbachler-Pietrzykowski
      Try Pulumi Cloud free. Your team will thank you.