Viewing docs for Proxmox Virtual Environment (Proxmox VE) v8.1.0
published on Sunday, Apr 26, 2026 by Daniel Muehlbachler-Pietrzykowski
published on Sunday, Apr 26, 2026 by Daniel Muehlbachler-Pietrzykowski
Viewing docs for Proxmox Virtual Environment (Proxmox VE) v8.1.0
published on Sunday, Apr 26, 2026 by Daniel Muehlbachler-Pietrzykowski
published on Sunday, Apr 26, 2026 by Daniel Muehlbachler-Pietrzykowski
Deprecated: Use
proxmoxve.acme.getPlugininstead. This data source will be removed in v1.0.
Retrieves a single ACME plugin by plugin ID name.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as proxmoxve from "@muhlba91/pulumi-proxmoxve";
const example = proxmoxve.acme.getPluginLegacy({
plugin: "standalone",
});
export const dataProxmoxVirtualEnvironmentAcmePlugin = example;
import pulumi
import pulumi_proxmoxve as proxmoxve
example = proxmoxve.acme.get_plugin_legacy(plugin="standalone")
pulumi.export("dataProxmoxVirtualEnvironmentAcmePlugin", 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 {
example, err := acme.GetPluginLegacy(ctx, &acme.GetPluginLegacyArgs{
Plugin: "standalone",
}, nil)
if err != nil {
return err
}
ctx.Export("dataProxmoxVirtualEnvironmentAcmePlugin", example)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using ProxmoxVE = Pulumi.ProxmoxVE;
return await Deployment.RunAsync(() =>
{
var example = ProxmoxVE.Acme.GetPluginLegacy.Invoke(new()
{
Plugin = "standalone",
});
return new Dictionary<string, object?>
{
["dataProxmoxVirtualEnvironmentAcmePlugin"] = example,
};
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.proxmoxve.acme.AcmeFunctions;
import com.pulumi.proxmoxve.acme.inputs.GetPluginLegacyArgs;
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) {
final var example = AcmeFunctions.getPluginLegacy(GetPluginLegacyArgs.builder()
.plugin("standalone")
.build());
ctx.export("dataProxmoxVirtualEnvironmentAcmePlugin", example);
}
}
variables:
example:
fn::invoke:
function: proxmoxve:acme:getPluginLegacy
arguments:
plugin: standalone
outputs:
dataProxmoxVirtualEnvironmentAcmePlugin: ${example}
Using getPluginLegacy
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getPluginLegacy(args: GetPluginLegacyArgs, opts?: InvokeOptions): Promise<GetPluginLegacyResult>
function getPluginLegacyOutput(args: GetPluginLegacyOutputArgs, opts?: InvokeOptions): Output<GetPluginLegacyResult>def get_plugin_legacy(plugin: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetPluginLegacyResult
def get_plugin_legacy_output(plugin: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetPluginLegacyResult]func GetPluginLegacy(ctx *Context, args *GetPluginLegacyArgs, opts ...InvokeOption) (*GetPluginLegacyResult, error)
func GetPluginLegacyOutput(ctx *Context, args *GetPluginLegacyOutputArgs, opts ...InvokeOption) GetPluginLegacyResultOutput> Note: This function is named GetPluginLegacy in the Go SDK.
public static class GetPluginLegacy
{
public static Task<GetPluginLegacyResult> InvokeAsync(GetPluginLegacyArgs args, InvokeOptions? opts = null)
public static Output<GetPluginLegacyResult> Invoke(GetPluginLegacyInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetPluginLegacyResult> getPluginLegacy(GetPluginLegacyArgs args, InvokeOptions options)
public static Output<GetPluginLegacyResult> getPluginLegacy(GetPluginLegacyArgs args, InvokeOptions options)
fn::invoke:
function: proxmoxve:acme/getPluginLegacy:getPluginLegacy
arguments:
# arguments dictionaryThe following arguments are supported:
- Plugin string
- ACME Plugin ID name.
- Plugin string
- ACME Plugin ID name.
- plugin String
- ACME Plugin ID name.
- plugin string
- ACME Plugin ID name.
- plugin str
- ACME Plugin ID name.
- plugin String
- ACME Plugin ID name.
getPluginLegacy Result
The following output properties are available:
- Api string
- API plugin name.
- Data Dictionary<string, string>
- DNS plugin data.
- Digest string
- Prevent changes if current configuration file has a different digest. This can be used to prevent concurrent modifications.
- Id string
- The provider-assigned unique ID for this managed resource.
- Plugin string
- ACME Plugin ID name.
- Type string
- ACME challenge type (dns, standalone).
- 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
- Prevent changes if current configuration file has a different digest. This can be used to prevent concurrent modifications.
- Id string
- The provider-assigned unique ID for this managed resource.
- Plugin string
- ACME Plugin ID name.
- Type string
- ACME challenge type (dns, standalone).
- 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
- Prevent changes if current configuration file has a different digest. This can be used to prevent concurrent modifications.
- id String
- The provider-assigned unique ID for this managed resource.
- plugin String
- ACME Plugin ID name.
- type String
- ACME challenge type (dns, standalone).
- 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
- Prevent changes if current configuration file has a different digest. This can be used to prevent concurrent modifications.
- id string
- The provider-assigned unique ID for this managed resource.
- plugin string
- ACME Plugin ID name.
- type string
- ACME challenge type (dns, standalone).
- 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
- Prevent changes if current configuration file has a different digest. This can be used to prevent concurrent modifications.
- id str
- The provider-assigned unique ID for this managed resource.
- plugin str
- ACME Plugin ID name.
- type str
- ACME challenge type (dns, standalone).
- 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
- Prevent changes if current configuration file has a different digest. This can be used to prevent concurrent modifications.
- id String
- The provider-assigned unique ID for this managed resource.
- plugin String
- ACME Plugin ID name.
- type String
- ACME challenge type (dns, standalone).
- validation
Delay Number - Extra delay in seconds to wait before requesting validation. Allows to cope with a long TTL of DNS records (0 - 172800).
Package Details
- Repository
- proxmoxve muhlba91/pulumi-proxmoxve
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
proxmoxTerraform Provider.
Viewing docs for Proxmox Virtual Environment (Proxmox VE) v8.1.0
published on Sunday, Apr 26, 2026 by Daniel Muehlbachler-Pietrzykowski
published on Sunday, Apr 26, 2026 by Daniel Muehlbachler-Pietrzykowski
