1. Packages
  2. Packages
  3. Proxmox Virtual Environment (Proxmox VE)
  4. API Docs
  5. acme
  6. acme/dns
  7. PluginLegacy
Viewing docs for Proxmox Virtual Environment (Proxmox VE) v8.3.0
published on Sunday, Jul 5, 2026 by Daniel Muehlbachler-Pietrzykowski
proxmoxve logo
Viewing docs for Proxmox Virtual Environment (Proxmox VE) v8.3.0
published on Sunday, Jul 5, 2026 by Daniel Muehlbachler-Pietrzykowski

    Deprecated: Use proxmoxve.acme/dns.Plugin instead. This resource will be removed in v1.0.

    Manages an ACME plugin in a Proxmox VE cluster.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as proxmoxve from "@muhlba91/pulumi-proxmoxve";
    
    const example = new proxmoxve.acme.dns.PluginLegacy("example", {
        plugin: "test",
        api: "aws",
        data: {
            AWS_ACCESS_KEY_ID: "EXAMPLE",
            AWS_SECRET_ACCESS_KEY: "EXAMPLE",
        },
    });
    
    import pulumi
    import pulumi_proxmoxve as proxmoxve
    
    example = proxmoxve.acme.dns.PluginLegacy("example",
        plugin="test",
        api="aws",
        data={
            "AWS_ACCESS_KEY_ID": "EXAMPLE",
            "AWS_SECRET_ACCESS_KEY": "EXAMPLE",
        })
    
    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.NewPluginLegacy(ctx, "example", &acme.PluginLegacyArgs{
    			Plugin: pulumi.String("test"),
    			Api:    pulumi.String("aws"),
    			Data: pulumi.StringMap{
    				"AWS_ACCESS_KEY_ID":     pulumi.String("EXAMPLE"),
    				"AWS_SECRET_ACCESS_KEY": pulumi.String("EXAMPLE"),
    			},
    		})
    		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.Dns.PluginLegacy("example", new()
        {
            PluginName = "test",
            Api = "aws",
            Data = 
            {
                { "AWS_ACCESS_KEY_ID", "EXAMPLE" },
                { "AWS_SECRET_ACCESS_KEY", "EXAMPLE" },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import io.muehlbachler.pulumi.proxmoxve.acme.PluginLegacy;
    import io.muehlbachler.pulumi.proxmoxve.acme.PluginLegacyArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    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 PluginLegacy("example", PluginLegacyArgs.builder()
                .plugin("test")
                .api("aws")
                .data(Map.ofEntries(
                    Map.entry("AWS_ACCESS_KEY_ID", "EXAMPLE"),
                    Map.entry("AWS_SECRET_ACCESS_KEY", "EXAMPLE")
                ))
                .build());
    
        }
    }
    
    resources:
      example:
        type: proxmoxve:acme/dns:PluginLegacy
        properties:
          plugin: test
          api: aws
          data:
            AWS_ACCESS_KEY_ID: EXAMPLE
            AWS_SECRET_ACCESS_KEY: EXAMPLE
    
    pulumi {
      required_providers {
        proxmoxve = {
          source = "pulumi/proxmoxve"
        }
      }
    }
    
    resource "proxmoxve_acme_dns_pluginlegacy" "example" {
      plugin = "test"
      api    = "aws"
      data = {
        "AWS_ACCESS_KEY_ID"     = "EXAMPLE"
        "AWS_SECRET_ACCESS_KEY" = "EXAMPLE"
      }
    }
    

    Create PluginLegacy Resource

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

    Constructor syntax

    new PluginLegacy(name: string, args: PluginLegacyArgs, opts?: CustomResourceOptions);
    @overload
    def PluginLegacy(resource_name: str,
                     args: PluginLegacyArgs,
                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def PluginLegacy(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     api: Optional[str] = None,
                     plugin: Optional[str] = None,
                     data: Optional[Mapping[str, str]] = None,
                     data_wo: Optional[Mapping[str, str]] = None,
                     data_wo_version: Optional[int] = None,
                     digest: Optional[str] = None,
                     disable: Optional[bool] = None,
                     validation_delay: Optional[int] = None)
    func NewPluginLegacy(ctx *Context, name string, args PluginLegacyArgs, opts ...ResourceOption) (*PluginLegacy, error)
    public PluginLegacy(string name, PluginLegacyArgs args, CustomResourceOptions? opts = null)
    public PluginLegacy(String name, PluginLegacyArgs args)
    public PluginLegacy(String name, PluginLegacyArgs args, CustomResourceOptions options)
    
    type: proxmoxve:acme/dns/pluginLegacy:PluginLegacy
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "proxmoxve_acme_dns_pluginlegacy" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args PluginLegacyArgs
    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 PluginLegacyArgs
    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 PluginLegacyArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PluginLegacyArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PluginLegacyArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

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

    Api string
    API plugin name.
    pluginName string
    ACME plugin ID name.
    Data Dictionary<string, string>
    DNS plugin data.
    DataWo Dictionary<string, string>
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. DNS plugin data, supplied as a write-only argument so credentials are never stored in Terraform state. Requires Terraform 1.11+. Mutually exclusive with data. Pair with dataWoVersion to push rotated values.
    DataWoVersion int
    Version counter for dataWo. Because write-only values are not stored in state, Terraform cannot detect when dataWo changes; increment this value to signal a rotation and force the new dataWo to be sent.
    Digest string
    SHA1 digest of the current configuration. Prevent changes if current configuration file has a different digest. This can be used to prevent concurrent modifications.
    Disable bool
    Flag to disable the config.
    ValidationDelay int
    Extra delay in seconds to wait before requesting validation. Allows to cope with a long TTL of DNS records (0 - 172800).
    Api string
    API plugin name.
    Plugin string
    ACME plugin ID name.
    Data map[string]string
    DNS plugin data.
    DataWo map[string]string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. DNS plugin data, supplied as a write-only argument so credentials are never stored in Terraform state. Requires Terraform 1.11+. Mutually exclusive with data. Pair with dataWoVersion to push rotated values.
    DataWoVersion int
    Version counter for dataWo. Because write-only values are not stored in state, Terraform cannot detect when dataWo changes; increment this value to signal a rotation and force the new dataWo to be sent.
    Digest string
    SHA1 digest of the current configuration. Prevent changes if current configuration file has a different digest. This can be used to prevent concurrent modifications.
    Disable bool
    Flag to disable the config.
    ValidationDelay int
    Extra delay in seconds to wait before requesting validation. Allows to cope with a long TTL of DNS records (0 - 172800).
    api string
    API plugin name.
    plugin string
    ACME plugin ID name.
    data map(string)
    DNS plugin data.
    data_wo map(string)
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. DNS plugin data, supplied as a write-only argument so credentials are never stored in Terraform state. Requires Terraform 1.11+. Mutually exclusive with data. Pair with dataWoVersion to push rotated values.
    data_wo_version number
    Version counter for dataWo. Because write-only values are not stored in state, Terraform cannot detect when dataWo changes; increment this value to signal a rotation and force the new dataWo to be sent.
    digest string
    SHA1 digest of the current configuration. Prevent changes if current configuration file has a different digest. This can be used to prevent concurrent modifications.
    disable bool
    Flag to disable the config.
    validation_delay number
    Extra delay in seconds to wait before requesting validation. Allows to cope with a long TTL of DNS records (0 - 172800).
    api String
    API plugin name.
    plugin String
    ACME plugin ID name.
    data Map<String,String>
    DNS plugin data.
    dataWo Map<String,String>
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. DNS plugin data, supplied as a write-only argument so credentials are never stored in Terraform state. Requires Terraform 1.11+. Mutually exclusive with data. Pair with dataWoVersion to push rotated values.
    dataWoVersion Integer
    Version counter for dataWo. Because write-only values are not stored in state, Terraform cannot detect when dataWo changes; increment this value to signal a rotation and force the new dataWo to be sent.
    digest String
    SHA1 digest of the current configuration. Prevent changes if current configuration file has a different digest. This can be used to prevent concurrent modifications.
    disable Boolean
    Flag to disable the config.
    validationDelay Integer
    Extra delay in seconds to wait before requesting validation. Allows to cope with a long TTL of DNS records (0 - 172800).
    api string
    API plugin name.
    plugin string
    ACME plugin ID name.
    data {[key: string]: string}
    DNS plugin data.
    dataWo {[key: string]: string}
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. DNS plugin data, supplied as a write-only argument so credentials are never stored in Terraform state. Requires Terraform 1.11+. Mutually exclusive with data. Pair with dataWoVersion to push rotated values.
    dataWoVersion number
    Version counter for dataWo. Because write-only values are not stored in state, Terraform cannot detect when dataWo changes; increment this value to signal a rotation and force the new dataWo to be sent.
    digest string
    SHA1 digest of the current configuration. Prevent changes if current configuration file has a different digest. This can be used to prevent concurrent modifications.
    disable boolean
    Flag to disable the config.
    validationDelay number
    Extra delay in seconds to wait before requesting validation. Allows to cope with a long TTL of DNS records (0 - 172800).
    api str
    API plugin name.
    plugin str
    ACME plugin ID name.
    data Mapping[str, str]
    DNS plugin data.
    data_wo Mapping[str, str]
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. DNS plugin data, supplied as a write-only argument so credentials are never stored in Terraform state. Requires Terraform 1.11+. Mutually exclusive with data. Pair with dataWoVersion to push rotated values.
    data_wo_version int
    Version counter for dataWo. Because write-only values are not stored in state, Terraform cannot detect when dataWo changes; increment this value to signal a rotation and force the new dataWo to be sent.
    digest str
    SHA1 digest of the current configuration. Prevent changes if current configuration file has a different digest. This can be used to prevent concurrent modifications.
    disable bool
    Flag to disable the config.
    validation_delay int
    Extra delay in seconds to wait before requesting validation. Allows to cope with a long TTL of DNS records (0 - 172800).
    api String
    API plugin name.
    plugin String
    ACME plugin ID name.
    data Map<String>
    DNS plugin data.
    dataWo Map<String>
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. DNS plugin data, supplied as a write-only argument so credentials are never stored in Terraform state. Requires Terraform 1.11+. Mutually exclusive with data. Pair with dataWoVersion to push rotated values.
    dataWoVersion Number
    Version counter for dataWo. Because write-only values are not stored in state, Terraform cannot detect when dataWo changes; increment this value to signal a rotation and force the new dataWo to be sent.
    digest String
    SHA1 digest of the current configuration. Prevent changes if current configuration file has a different digest. This can be used to prevent concurrent modifications.
    disable Boolean
    Flag to disable the config.
    validationDelay Number
    Extra delay in seconds to wait before requesting validation. Allows to cope with a long TTL of DNS records (0 - 172800).

    Outputs

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

    Get an existing PluginLegacy 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?: PluginLegacyState, opts?: CustomResourceOptions): PluginLegacy
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            api: Optional[str] = None,
            data: Optional[Mapping[str, str]] = None,
            data_wo: Optional[Mapping[str, str]] = None,
            data_wo_version: Optional[int] = None,
            digest: Optional[str] = None,
            disable: Optional[bool] = None,
            plugin: Optional[str] = None,
            validation_delay: Optional[int] = None) -> PluginLegacy
    func GetPluginLegacy(ctx *Context, name string, id IDInput, state *PluginLegacyState, opts ...ResourceOption) (*PluginLegacy, error)
    public static PluginLegacy Get(string name, Input<string> id, PluginLegacyState? state, CustomResourceOptions? opts = null)
    public static PluginLegacy get(String name, Output<String> id, PluginLegacyState state, CustomResourceOptions options)
    resources:  _:    type: proxmoxve:acme/dns/pluginLegacy:PluginLegacy    get:      id: ${id}
    import {
      to = proxmoxve_acme_dns_pluginlegacy.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:
    Api string
    API plugin name.
    Data Dictionary<string, string>
    DNS plugin data.
    DataWo Dictionary<string, string>
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. DNS plugin data, supplied as a write-only argument so credentials are never stored in Terraform state. Requires Terraform 1.11+. Mutually exclusive with data. Pair with dataWoVersion to push rotated values.
    DataWoVersion int
    Version counter for dataWo. Because write-only values are not stored in state, Terraform cannot detect when dataWo changes; increment this value to signal a rotation and force the new dataWo to be sent.
    Digest string
    SHA1 digest of the current configuration. Prevent changes if current configuration file has a different digest. This can be used to prevent concurrent modifications.
    Disable bool
    Flag to disable the config.
    ValidationDelay int
    Extra delay in seconds to wait before requesting validation. Allows to cope with a long TTL of DNS records (0 - 172800).
    pluginName string
    ACME plugin ID name.
    Api string
    API plugin name.
    Data map[string]string
    DNS plugin data.
    DataWo map[string]string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. DNS plugin data, supplied as a write-only argument so credentials are never stored in Terraform state. Requires Terraform 1.11+. Mutually exclusive with data. Pair with dataWoVersion to push rotated values.
    DataWoVersion int
    Version counter for dataWo. Because write-only values are not stored in state, Terraform cannot detect when dataWo changes; increment this value to signal a rotation and force the new dataWo to be sent.
    Digest string
    SHA1 digest of the current configuration. Prevent changes if current configuration file has a different digest. This can be used to prevent concurrent modifications.
    Disable bool
    Flag to disable the config.
    Plugin string
    ACME plugin ID name.
    ValidationDelay int
    Extra delay in seconds to wait before requesting validation. Allows to cope with a long TTL of DNS records (0 - 172800).
    api string
    API plugin name.
    data map(string)
    DNS plugin data.
    data_wo map(string)
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. DNS plugin data, supplied as a write-only argument so credentials are never stored in Terraform state. Requires Terraform 1.11+. Mutually exclusive with data. Pair with dataWoVersion to push rotated values.
    data_wo_version number
    Version counter for dataWo. Because write-only values are not stored in state, Terraform cannot detect when dataWo changes; increment this value to signal a rotation and force the new dataWo to be sent.
    digest string
    SHA1 digest of the current configuration. Prevent changes if current configuration file has a different digest. This can be used to prevent concurrent modifications.
    disable bool
    Flag to disable the config.
    plugin string
    ACME plugin ID name.
    validation_delay number
    Extra delay in seconds to wait before requesting validation. Allows to cope with a long TTL of DNS records (0 - 172800).
    api String
    API plugin name.
    data Map<String,String>
    DNS plugin data.
    dataWo Map<String,String>
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. DNS plugin data, supplied as a write-only argument so credentials are never stored in Terraform state. Requires Terraform 1.11+. Mutually exclusive with data. Pair with dataWoVersion to push rotated values.
    dataWoVersion Integer
    Version counter for dataWo. Because write-only values are not stored in state, Terraform cannot detect when dataWo changes; increment this value to signal a rotation and force the new dataWo to be sent.
    digest String
    SHA1 digest of the current configuration. Prevent changes if current configuration file has a different digest. This can be used to prevent concurrent modifications.
    disable Boolean
    Flag to disable the config.
    plugin String
    ACME plugin ID name.
    validationDelay Integer
    Extra delay in seconds to wait before requesting validation. Allows to cope with a long TTL of DNS records (0 - 172800).
    api string
    API plugin name.
    data {[key: string]: string}
    DNS plugin data.
    dataWo {[key: string]: string}
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. DNS plugin data, supplied as a write-only argument so credentials are never stored in Terraform state. Requires Terraform 1.11+. Mutually exclusive with data. Pair with dataWoVersion to push rotated values.
    dataWoVersion number
    Version counter for dataWo. Because write-only values are not stored in state, Terraform cannot detect when dataWo changes; increment this value to signal a rotation and force the new dataWo to be sent.
    digest string
    SHA1 digest of the current configuration. Prevent changes if current configuration file has a different digest. This can be used to prevent concurrent modifications.
    disable boolean
    Flag to disable the config.
    plugin string
    ACME plugin ID name.
    validationDelay number
    Extra delay in seconds to wait before requesting validation. Allows to cope with a long TTL of DNS records (0 - 172800).
    api str
    API plugin name.
    data Mapping[str, str]
    DNS plugin data.
    data_wo Mapping[str, str]
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. DNS plugin data, supplied as a write-only argument so credentials are never stored in Terraform state. Requires Terraform 1.11+. Mutually exclusive with data. Pair with dataWoVersion to push rotated values.
    data_wo_version int
    Version counter for dataWo. Because write-only values are not stored in state, Terraform cannot detect when dataWo changes; increment this value to signal a rotation and force the new dataWo to be sent.
    digest str
    SHA1 digest of the current configuration. Prevent changes if current configuration file has a different digest. This can be used to prevent concurrent modifications.
    disable bool
    Flag to disable the config.
    plugin str
    ACME plugin ID name.
    validation_delay int
    Extra delay in seconds to wait before requesting validation. Allows to cope with a long TTL of DNS records (0 - 172800).
    api String
    API plugin name.
    data Map<String>
    DNS plugin data.
    dataWo Map<String>
    NOTE: This field is write-only and its value will not be updated in state as part of read operations. DNS plugin data, supplied as a write-only argument so credentials are never stored in Terraform state. Requires Terraform 1.11+. Mutually exclusive with data. Pair with dataWoVersion to push rotated values.
    dataWoVersion Number
    Version counter for dataWo. Because write-only values are not stored in state, Terraform cannot detect when dataWo changes; increment this value to signal a rotation and force the new dataWo to be sent.
    digest String
    SHA1 digest of the current configuration. Prevent changes if current configuration file has a different digest. This can be used to prevent concurrent modifications.
    disable Boolean
    Flag to disable the config.
    plugin String
    ACME plugin ID name.
    validationDelay Number
    Extra delay in seconds to wait before requesting validation. Allows to cope with a long TTL of DNS records (0 - 172800).

    Import

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

    $ pulumi import proxmoxve:acme/dns/pluginLegacy:PluginLegacy example test
    

    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.3.0
    published on Sunday, Jul 5, 2026 by Daniel Muehlbachler-Pietrzykowski

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial