Viewing docs for Proxmox Virtual Environment (Proxmox VE) v8.0.0
published on Sunday, Apr 5, 2026 by Daniel Muehlbachler-Pietrzykowski
published on Sunday, Apr 5, 2026 by Daniel Muehlbachler-Pietrzykowski
Viewing docs for Proxmox Virtual Environment (Proxmox VE) v8.0.0
published on Sunday, Apr 5, 2026 by Daniel Muehlbachler-Pietrzykowski
published on Sunday, Apr 5, 2026 by Daniel Muehlbachler-Pietrzykowski
Deprecated: Use
proxmoxve.acme.Accountinstead. This data source will be removed in v1.0.
Retrieves information about a specific ACME account.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as proxmoxve from "@muhlba91/pulumi-proxmoxve";
// This will fetch all ACME accounts...
const all = proxmoxve.acme.getAccountsLegacy({});
// ...which we will go through in order to fetch the whole data on each account.
const example = all.then(all => .reduce((__obj, [__key, __value]) => ({ ...__obj, [__key]: proxmoxve.acme.getAccountLegacy({
name: __value,
}) }), {}));
export const dataProxmoxVirtualEnvironmentAcmeAccount = example;
import pulumi
import pulumi_proxmoxve as proxmoxve
# This will fetch all ACME accounts...
all = proxmoxve.acme.get_accounts_legacy()
# ...which we will go through in order to fetch the whole data on each account.
example = {__key: proxmoxve.acme.get_account_legacy(name=__value) for __key, __value in enumerate(all.accounts)}
pulumi.export("dataProxmoxVirtualEnvironmentAcmeAccount", example)
Example coming soon!
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using ProxmoxVE = Pulumi.ProxmoxVE;
return await Deployment.RunAsync(() =>
{
// This will fetch all ACME accounts...
var all = ProxmoxVE.Acme.GetAccountsLegacy.Invoke();
// ...which we will go through in order to fetch the whole data on each account.
var example = ;
return new Dictionary<string, object?>
{
["dataProxmoxVirtualEnvironmentAcmeAccount"] = example,
};
});
Example coming soon!
Example coming soon!
Using getAccountLegacy
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 getAccountLegacy(args: GetAccountLegacyArgs, opts?: InvokeOptions): Promise<GetAccountLegacyResult>
function getAccountLegacyOutput(args: GetAccountLegacyOutputArgs, opts?: InvokeOptions): Output<GetAccountLegacyResult>def get_account_legacy(name: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetAccountLegacyResult
def get_account_legacy_output(name: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetAccountLegacyResult]func LookupAccountLegacy(ctx *Context, args *LookupAccountLegacyArgs, opts ...InvokeOption) (*LookupAccountLegacyResult, error)
func LookupAccountLegacyOutput(ctx *Context, args *LookupAccountLegacyOutputArgs, opts ...InvokeOption) LookupAccountLegacyResultOutput> Note: This function is named LookupAccountLegacy in the Go SDK.
public static class GetAccountLegacy
{
public static Task<GetAccountLegacyResult> InvokeAsync(GetAccountLegacyArgs args, InvokeOptions? opts = null)
public static Output<GetAccountLegacyResult> Invoke(GetAccountLegacyInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetAccountLegacyResult> getAccountLegacy(GetAccountLegacyArgs args, InvokeOptions options)
public static Output<GetAccountLegacyResult> getAccountLegacy(GetAccountLegacyArgs args, InvokeOptions options)
fn::invoke:
function: proxmoxve:acme/getAccountLegacy:getAccountLegacy
arguments:
# arguments dictionaryThe following arguments are supported:
- Name string
- The identifier of the ACME account to read.
- Name string
- The identifier of the ACME account to read.
- name String
- The identifier of the ACME account to read.
- name string
- The identifier of the ACME account to read.
- name str
- The identifier of the ACME account to read.
- name String
- The identifier of the ACME account to read.
getAccountLegacy Result
The following output properties are available:
- Account
Pulumi.
Proxmox VE. Acme. Outputs. Get Account Legacy Account - The ACME account information.
- Directory string
- The directory URL of the ACME account.
- Id string
- The provider-assigned unique ID for this managed resource.
- Location string
- The location URL of the ACME account.
- Tos string
- The URL of the terms of service of the ACME account.
- Name string
- The identifier of the ACME account to read.
- Account
Get
Account Legacy Account - The ACME account information.
- Directory string
- The directory URL of the ACME account.
- Id string
- The provider-assigned unique ID for this managed resource.
- Location string
- The location URL of the ACME account.
- Tos string
- The URL of the terms of service of the ACME account.
- Name string
- The identifier of the ACME account to read.
- account
Get
Account Legacy Account - The ACME account information.
- directory String
- The directory URL of the ACME account.
- id String
- The provider-assigned unique ID for this managed resource.
- location String
- The location URL of the ACME account.
- tos String
- The URL of the terms of service of the ACME account.
- name String
- The identifier of the ACME account to read.
- account
Get
Account Legacy Account - The ACME account information.
- directory string
- The directory URL of the ACME account.
- id string
- The provider-assigned unique ID for this managed resource.
- location string
- The location URL of the ACME account.
- tos string
- The URL of the terms of service of the ACME account.
- name string
- The identifier of the ACME account to read.
- account
Get
Account Legacy Account - The ACME account information.
- directory str
- The directory URL of the ACME account.
- id str
- The provider-assigned unique ID for this managed resource.
- location str
- The location URL of the ACME account.
- tos str
- The URL of the terms of service of the ACME account.
- name str
- The identifier of the ACME account to read.
- account Property Map
- The ACME account information.
- directory String
- The directory URL of the ACME account.
- id String
- The provider-assigned unique ID for this managed resource.
- location String
- The location URL of the ACME account.
- tos String
- The URL of the terms of service of the ACME account.
- name String
- The identifier of the ACME account to read.
Supporting Types
GetAccountLegacyAccount
- contacts Sequence[str]
- An array of contact email addresses.
- created_
at str - The timestamp of the account creation.
- status str
- The status of the account. Can be one of
valid,deactivatedorrevoked.
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.0.0
published on Sunday, Apr 5, 2026 by Daniel Muehlbachler-Pietrzykowski
published on Sunday, Apr 5, 2026 by Daniel Muehlbachler-Pietrzykowski
