Skip to content

Data Source: proxmox_virtual_environment_acme_account

Warning

Deprecated: Use proxmox_acme_account instead. This data source will be removed in v1.0.

Retrieves information about a specific ACME account.

Example Usage

// This will fetch all ACME accounts...
data "proxmox_virtual_environment_acme_accounts" "all" {}

// ...which we will go through in order to fetch the whole data on each account.
data "proxmox_virtual_environment_acme_account" "example" {
  for_each = data.proxmox_virtual_environment_acme_accounts.all.accounts
  name     = each.value
}

output "data_proxmox_virtual_environment_acme_account" {
  value = data.proxmox_virtual_environment_acme_account.example
}

Schema

Optional

  • name (String) The identifier of the ACME account to read.

Read-Only

  • account (Attributes) The ACME account information. (see below for nested schema)
  • directory (String) The directory URL of the ACME account.
  • location (String) The location URL of the ACME account.
  • tos (String) The URL of the terms of service of the ACME account.

Nested Schema for account

Read-Only:

  • contact (List of String) An array of contact email addresses.
  • created_at (String) The timestamp of the account creation.
  • status (String) The status of the account. Can be one of valid, deactivated or revoked.