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

    Deprecated: Use proxmoxve.acme.Account instead. This resource will be removed in v1.0.

    Manages an ACME account in a Proxmox VE cluster.

    This resource requires root@pam authentication.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as proxmoxve from "@muhlba91/pulumi-proxmoxve";
    
    const example = new proxmoxve.acme.AccountLegacy("example", {
        name: "example",
        contact: "example@email.com",
        directory: "https://acme-staging-v02.api.letsencrypt.org/directory",
        tos: "https://letsencrypt.org/documents/LE-SA-v1.3-September-21-2022.pdf",
    });
    
    import pulumi
    import pulumi_proxmoxve as proxmoxve
    
    example = proxmoxve.acme.AccountLegacy("example",
        name="example",
        contact="example@email.com",
        directory="https://acme-staging-v02.api.letsencrypt.org/directory",
        tos="https://letsencrypt.org/documents/LE-SA-v1.3-September-21-2022.pdf")
    
    package main
    
    import (
    	"github.com/muhlba91/pulumi-proxmoxve/sdk/v8/go/proxmoxve/acme"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := acme.NewAccountLegacy(ctx, "example", &acme.AccountLegacyArgs{
    			Name:      pulumi.String("example"),
    			Contact:   pulumi.String("example@email.com"),
    			Directory: pulumi.String("https://acme-staging-v02.api.letsencrypt.org/directory"),
    			Tos:       pulumi.String("https://letsencrypt.org/documents/LE-SA-v1.3-September-21-2022.pdf"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using ProxmoxVE = Pulumi.ProxmoxVE;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new ProxmoxVE.Acme.AccountLegacy("example", new()
        {
            Name = "example",
            Contact = "example@email.com",
            Directory = "https://acme-staging-v02.api.letsencrypt.org/directory",
            Tos = "https://letsencrypt.org/documents/LE-SA-v1.3-September-21-2022.pdf",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import io.muehlbachler.pulumi.proxmoxve.acme.AccountLegacy;
    import io.muehlbachler.pulumi.proxmoxve.acme.AccountLegacyArgs;
    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 example = new AccountLegacy("example", AccountLegacyArgs.builder()
                .name("example")
                .contact("example@email.com")
                .directory("https://acme-staging-v02.api.letsencrypt.org/directory")
                .tos("https://letsencrypt.org/documents/LE-SA-v1.3-September-21-2022.pdf")
                .build());
    
        }
    }
    
    resources:
      example:
        type: proxmoxve:acme:AccountLegacy
        properties:
          name: example
          contact: example@email.com
          directory: https://acme-staging-v02.api.letsencrypt.org/directory
          tos: https://letsencrypt.org/documents/LE-SA-v1.3-September-21-2022.pdf
    

    Create AccountLegacy Resource

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

    Constructor syntax

    new AccountLegacy(name: string, args: AccountLegacyArgs, opts?: CustomResourceOptions);
    @overload
    def AccountLegacy(resource_name: str,
                      args: AccountLegacyArgs,
                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def AccountLegacy(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      contact: Optional[str] = None,
                      directory: Optional[str] = None,
                      eab_hmac_key: Optional[str] = None,
                      eab_kid: Optional[str] = None,
                      name: Optional[str] = None,
                      tos: Optional[str] = None)
    func NewAccountLegacy(ctx *Context, name string, args AccountLegacyArgs, opts ...ResourceOption) (*AccountLegacy, error)
    public AccountLegacy(string name, AccountLegacyArgs args, CustomResourceOptions? opts = null)
    public AccountLegacy(String name, AccountLegacyArgs args)
    public AccountLegacy(String name, AccountLegacyArgs args, CustomResourceOptions options)
    
    type: proxmoxve:acme:AccountLegacy
    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 AccountLegacyArgs
    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 AccountLegacyArgs
    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 AccountLegacyArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AccountLegacyArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AccountLegacyArgs
    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 accountLegacyResource = new ProxmoxVE.Acme.AccountLegacy("accountLegacyResource", new()
    {
        Contact = "string",
        Directory = "string",
        EabHmacKey = "string",
        EabKid = "string",
        Name = "string",
        Tos = "string",
    });
    
    example, err := acme.NewAccountLegacy(ctx, "accountLegacyResource", &acme.AccountLegacyArgs{
    	Contact:    pulumi.String("string"),
    	Directory:  pulumi.String("string"),
    	EabHmacKey: pulumi.String("string"),
    	EabKid:     pulumi.String("string"),
    	Name:       pulumi.String("string"),
    	Tos:        pulumi.String("string"),
    })
    
    var accountLegacyResource = new AccountLegacy("accountLegacyResource", AccountLegacyArgs.builder()
        .contact("string")
        .directory("string")
        .eabHmacKey("string")
        .eabKid("string")
        .name("string")
        .tos("string")
        .build());
    
    account_legacy_resource = proxmoxve.acme.AccountLegacy("accountLegacyResource",
        contact="string",
        directory="string",
        eab_hmac_key="string",
        eab_kid="string",
        name="string",
        tos="string")
    
    const accountLegacyResource = new proxmoxve.acme.AccountLegacy("accountLegacyResource", {
        contact: "string",
        directory: "string",
        eabHmacKey: "string",
        eabKid: "string",
        name: "string",
        tos: "string",
    });
    
    type: proxmoxve:acme:AccountLegacy
    properties:
        contact: string
        directory: string
        eabHmacKey: string
        eabKid: string
        name: string
        tos: string
    

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

    Contact string
    The contact email addresses.
    Directory string
    The URL of the ACME CA directory endpoint.
    EabHmacKey string
    The HMAC key for External Account Binding.
    EabKid string
    The Key Identifier for External Account Binding.
    Name string
    The ACME account config file name.
    Tos string
    The URL of CA TermsOfService - setting this indicates agreement.
    Contact string
    The contact email addresses.
    Directory string
    The URL of the ACME CA directory endpoint.
    EabHmacKey string
    The HMAC key for External Account Binding.
    EabKid string
    The Key Identifier for External Account Binding.
    Name string
    The ACME account config file name.
    Tos string
    The URL of CA TermsOfService - setting this indicates agreement.
    contact String
    The contact email addresses.
    directory String
    The URL of the ACME CA directory endpoint.
    eabHmacKey String
    The HMAC key for External Account Binding.
    eabKid String
    The Key Identifier for External Account Binding.
    name String
    The ACME account config file name.
    tos String
    The URL of CA TermsOfService - setting this indicates agreement.
    contact string
    The contact email addresses.
    directory string
    The URL of the ACME CA directory endpoint.
    eabHmacKey string
    The HMAC key for External Account Binding.
    eabKid string
    The Key Identifier for External Account Binding.
    name string
    The ACME account config file name.
    tos string
    The URL of CA TermsOfService - setting this indicates agreement.
    contact str
    The contact email addresses.
    directory str
    The URL of the ACME CA directory endpoint.
    eab_hmac_key str
    The HMAC key for External Account Binding.
    eab_kid str
    The Key Identifier for External Account Binding.
    name str
    The ACME account config file name.
    tos str
    The URL of CA TermsOfService - setting this indicates agreement.
    contact String
    The contact email addresses.
    directory String
    The URL of the ACME CA directory endpoint.
    eabHmacKey String
    The HMAC key for External Account Binding.
    eabKid String
    The Key Identifier for External Account Binding.
    name String
    The ACME account config file name.
    tos String
    The URL of CA TermsOfService - setting this indicates agreement.

    Outputs

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

    CreatedAt string
    The timestamp of the ACME account creation.
    Id string
    The provider-assigned unique ID for this managed resource.
    Location string
    The location of the ACME account.
    CreatedAt string
    The timestamp of the ACME account creation.
    Id string
    The provider-assigned unique ID for this managed resource.
    Location string
    The location of the ACME account.
    createdAt String
    The timestamp of the ACME account creation.
    id String
    The provider-assigned unique ID for this managed resource.
    location String
    The location of the ACME account.
    createdAt string
    The timestamp of the ACME account creation.
    id string
    The provider-assigned unique ID for this managed resource.
    location string
    The location of the ACME account.
    created_at str
    The timestamp of the ACME account creation.
    id str
    The provider-assigned unique ID for this managed resource.
    location str
    The location of the ACME account.
    createdAt String
    The timestamp of the ACME account creation.
    id String
    The provider-assigned unique ID for this managed resource.
    location String
    The location of the ACME account.

    Look up Existing AccountLegacy Resource

    Get an existing AccountLegacy 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?: AccountLegacyState, opts?: CustomResourceOptions): AccountLegacy
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            contact: Optional[str] = None,
            created_at: Optional[str] = None,
            directory: Optional[str] = None,
            eab_hmac_key: Optional[str] = None,
            eab_kid: Optional[str] = None,
            location: Optional[str] = None,
            name: Optional[str] = None,
            tos: Optional[str] = None) -> AccountLegacy
    func GetAccountLegacy(ctx *Context, name string, id IDInput, state *AccountLegacyState, opts ...ResourceOption) (*AccountLegacy, error)
    public static AccountLegacy Get(string name, Input<string> id, AccountLegacyState? state, CustomResourceOptions? opts = null)
    public static AccountLegacy get(String name, Output<String> id, AccountLegacyState state, CustomResourceOptions options)
    resources:  _:    type: proxmoxve:acme:AccountLegacy    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:
    Contact string
    The contact email addresses.
    CreatedAt string
    The timestamp of the ACME account creation.
    Directory string
    The URL of the ACME CA directory endpoint.
    EabHmacKey string
    The HMAC key for External Account Binding.
    EabKid string
    The Key Identifier for External Account Binding.
    Location string
    The location of the ACME account.
    Name string
    The ACME account config file name.
    Tos string
    The URL of CA TermsOfService - setting this indicates agreement.
    Contact string
    The contact email addresses.
    CreatedAt string
    The timestamp of the ACME account creation.
    Directory string
    The URL of the ACME CA directory endpoint.
    EabHmacKey string
    The HMAC key for External Account Binding.
    EabKid string
    The Key Identifier for External Account Binding.
    Location string
    The location of the ACME account.
    Name string
    The ACME account config file name.
    Tos string
    The URL of CA TermsOfService - setting this indicates agreement.
    contact String
    The contact email addresses.
    createdAt String
    The timestamp of the ACME account creation.
    directory String
    The URL of the ACME CA directory endpoint.
    eabHmacKey String
    The HMAC key for External Account Binding.
    eabKid String
    The Key Identifier for External Account Binding.
    location String
    The location of the ACME account.
    name String
    The ACME account config file name.
    tos String
    The URL of CA TermsOfService - setting this indicates agreement.
    contact string
    The contact email addresses.
    createdAt string
    The timestamp of the ACME account creation.
    directory string
    The URL of the ACME CA directory endpoint.
    eabHmacKey string
    The HMAC key for External Account Binding.
    eabKid string
    The Key Identifier for External Account Binding.
    location string
    The location of the ACME account.
    name string
    The ACME account config file name.
    tos string
    The URL of CA TermsOfService - setting this indicates agreement.
    contact str
    The contact email addresses.
    created_at str
    The timestamp of the ACME account creation.
    directory str
    The URL of the ACME CA directory endpoint.
    eab_hmac_key str
    The HMAC key for External Account Binding.
    eab_kid str
    The Key Identifier for External Account Binding.
    location str
    The location of the ACME account.
    name str
    The ACME account config file name.
    tos str
    The URL of CA TermsOfService - setting this indicates agreement.
    contact String
    The contact email addresses.
    createdAt String
    The timestamp of the ACME account creation.
    directory String
    The URL of the ACME CA directory endpoint.
    eabHmacKey String
    The HMAC key for External Account Binding.
    eabKid String
    The Key Identifier for External Account Binding.
    location String
    The location of the ACME account.
    name String
    The ACME account config file name.
    tos String
    The URL of CA TermsOfService - setting this indicates agreement.

    Import

    !/usr/bin/env sh ACME accounts can be imported using their name, e.g.:

    $ pulumi import proxmoxve:acme/accountLegacy:AccountLegacy example example
    

    To learn more about importing existing cloud resources, see Importing resources.

    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.1.0
    published on Sunday, Apr 26, 2026 by Daniel Muehlbachler-Pietrzykowski
      Try Pulumi Cloud free. Your team will thank you.