published on Sunday, Apr 26, 2026 by Daniel Muehlbachler-Pietrzykowski
published on Sunday, Apr 26, 2026 by Daniel Muehlbachler-Pietrzykowski
Deprecated: Use
proxmoxve.acme/dns.Plugininstead. 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.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 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
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,
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.
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.
- plugin
Name string - ACME Plugin ID name.
- Data Dictionary<string, string>
- DNS plugin data.
- 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 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.
- 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 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.
- 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.
- validation
Delay 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.
- 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.
- 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 str
- API plugin name.
- plugin str
- ACME Plugin ID name.
- data Mapping[str, str]
- DNS plugin data.
- 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.
- 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.
- validation
Delay 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 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,
digest: Optional[str] = None,
disable: Optional[bool] = None,
plugin: Optional[str] = None,
validation_delay: Optional[int] = None) -> PluginLegacyfunc 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}- 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.
- Api string
- API plugin name.
- Data Dictionary<string, string>
- DNS plugin data.
- 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 int - Extra delay in seconds to wait before requesting validation. Allows to cope with a long TTL of DNS records (0 - 172800).
- plugin
Name string - ACME Plugin ID name.
- Api string
- API plugin name.
- Data map[string]string
- DNS plugin data.
- 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 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,String>
- DNS plugin data.
- 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.
- validation
Delay 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.
- 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.
- 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 str
- API plugin name.
- data Mapping[str, str]
- DNS plugin data.
- 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.
- 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.
- validation
Delay 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
proxmoxTerraform Provider.
published on Sunday, Apr 26, 2026 by Daniel Muehlbachler-Pietrzykowski
