0
0
mirror of https://github.com/bpg/terraform-provider-proxmox.git synced 2025-07-12 00:35:03 +00:00

Update changelog, documentation and release workflow

This commit is contained in:
Dan Petersen 2021-02-10 00:00:56 +01:00
parent 7bae0ce1e7
commit 259b446583
34 changed files with 110 additions and 102 deletions

View File

@ -1,47 +1,35 @@
# This GitHub action can publish assets for release when a tag is created. name: Create release
# Currently its setup to run on any tag that matches the pattern "v*" (ie. v0.1.0).
#
# This uses an action (paultyng/ghaction-import-gpg) that assumes you set your
# private key in the `GPG_PRIVATE_KEY` secret and passphrase in the `PASSPHRASE`
# secret. If you would rather own your own GPG handling, please fork this action
# or use an alternative one for key handling.
#
# You will need to pass the `--batch` flag to `gpg` in your signing step
# in `goreleaser` to indicate this is being used in a non-interactive mode.
#
name: release
on: on:
push: push:
tags: tags:
- 'v*' - 'v*'
jobs: jobs:
goreleaser: goreleaser:
runs-on: ubuntu-latest runs-on: ubuntu-20.04
steps: steps:
- -
name: Checkout name: Checkout the repository
uses: actions/checkout@v2 uses: actions/checkout@v2
with:
fetch-depth: 0
- -
name: Unshallow name: Set up the required version of Go
run: git fetch --prune --unshallow
-
name: Set up Go
uses: actions/setup-go@v2 uses: actions/setup-go@v2
with: with:
go-version: 1.14 go-version: 1.15
- -
name: Import GPG key name: Import the GPG signing key
id: import_gpg
uses: paultyng/ghaction-import-gpg@v2.1.0
env: env:
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }} GPG_KEY: ${{ secrets.GPG_KEY }}
PASSPHRASE: ${{ secrets.PASSPHRASE }} run: |
echo "$GPG_KEY" | base64 -d | gpg --batch --allow-secret-key-import --import
gpg --keyid-format LONG --list-secret-keys
- -
name: Run GoReleaser name: Create release
uses: goreleaser/goreleaser-action@v2 uses: goreleaser/goreleaser-action@v2
with: with:
version: latest version: latest
args: release --rm-dist args: release --rm-dist
env: env:
GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GPG_FINGERPRINT: ${{ secrets.GPG_FINGERPRINT }}

View File

@ -1,14 +1,8 @@
# Visit https://goreleaser.com for documentation on how to customize this
# behavior.
before: before:
hooks: hooks:
# this is just an example and not a requirement for provider building/publishing
- go mod tidy - go mod tidy
builds: builds:
- env: - env:
# goreleaser does not work with CGO, it could also complicate
# usage by users in CI/CD systems like Terraform Cloud where
# they are unable to install libraries.
- CGO_ENABLED=0 - CGO_ENABLED=0
mod_timestamp: '{{ .CommitTimestamp }}' mod_timestamp: '{{ .CommitTimestamp }}'
flags: flags:
@ -38,17 +32,14 @@ checksum:
signs: signs:
- artifacts: checksum - artifacts: checksum
args: args:
# if you are using this is a GitHub action or some other automated pipeline, you
# need to pass the batch flag to indicate its not interactive.
- "--batch" - "--batch"
- "--local-user" - "--local-user"
- "{{ .Env.GPG_FINGERPRINT }}" # set this environment variable for your signing key - "{{ .Env.GPG_FINGERPRINT }}"
- "--output" - "--output"
- "${signature}" - "${signature}"
- "--detach-sign" - "--detach-sign"
- "${artifact}" - "${artifact}"
release: release:
# If you want to manually examine the release before its live, uncomment this line: draft: false
# draft: true
changelog: changelog:
skip: true skip: true

View File

@ -8,7 +8,7 @@ cache:
- $HOME/gopath/pkg/mod - $HOME/gopath/pkg/mod
go: go:
- 1.13.x - 1.15.x
git: git:
depth: 1 depth: 1

View File

@ -1,4 +1,4 @@
## 0.4.0 (UNRELEASED) ## v0.4.0
FEATURES: FEATURES:
@ -7,7 +7,7 @@ FEATURES:
BREAKING CHANGES: BREAKING CHANGES:
* `interface` is now required to create disks * resource/virtual_environment_vm: `interface` is now required to create disks
``` ```
disk { disk {
@ -29,12 +29,12 @@ ENHANCEMENTS:
BUG FIXES: BUG FIXES:
* library/virtual_environment_nodes: Fix node IP address format * library/virtual_environment_nodes: Fix node IP address format
* library/virtual_environment_nodes: Fix WaitForNodeTask now detects errors correctly
* library/virtual_environment_vm: Fix CloneVM now waits for the task to be finished and detect errors.
* resource/virtual_environment_container: Fix VM ID collision when `vm_id` is not specified * resource/virtual_environment_container: Fix VM ID collision when `vm_id` is not specified
* resource/virtual_environment_vm: Fix VM ID collision when `vm_id` is not specified * resource/virtual_environment_vm: Fix VM ID collision when `vm_id` is not specified
* resource/virtual_environment_vm: Fix disk import issue when importing from directory-based datastores * resource/virtual_environment_vm: Fix disk import issue when importing from directory-based datastores
* resource/virtual/environment/vm: Fix handling of storage name - correct handling of `-` * resource/virtual/environment/vm: Fix handling of storage name - correct handling of `-`
* library/virtual_environment_nodes: Fix WaitForNodeTask now detects errors correctly
* library/virtual_environment_vm: Fix CloneVM now waits for the task to be finished and detect errors.
WORKAROUNDS: WORKAROUNDS:

View File

@ -4,6 +4,7 @@ title: Alias
permalink: /data-sources/alias permalink: /data-sources/alias
nav_order: 1 nav_order: 1
parent: Data Sources parent: Data Sources
subcategory: Virtual Environment
--- ---
# Data Source: Alias # Data Source: Alias
@ -18,11 +19,11 @@ data "proxmox_virtual_environment_cluster_alias" "local_network" {
} }
``` ```
## Arguments Reference ## Argument Reference
* `name` - (Required) Alias name. * `name` - (Required) Alias name.
## Attributes Reference ## Attribute Reference
* `cidr` - (Required) Network/IP specification in CIDR format. * `cidr` - (Required) Network/IP specification in CIDR format.
* `comment` - (Optional) Alias comment. * `comment` - (Optional) Alias comment.

View File

@ -4,6 +4,7 @@ title: Aliases
permalink: /data-sources/aliases permalink: /data-sources/aliases
nav_order: 2 nav_order: 2
parent: Data Sources parent: Data Sources
subcategory: Virtual Environment
--- ---
# Data Source: Aliases # Data Source: Aliases
@ -16,10 +17,10 @@ Retrieves the identifiers for all the available aliases.
data "proxmox_virtual_environment_cluster_aliases" "available_aliases" {} data "proxmox_virtual_environment_cluster_aliases" "available_aliases" {}
``` ```
## Arguments Reference ## Argument Reference
There are no arguments available for this data source. There are no arguments available for this data source.
## Attributes Reference ## Attribute Reference
* `alias_ids` - The pool identifiers. * `alias_ids` - The pool identifiers.

View File

@ -4,6 +4,7 @@ title: Datastores
permalink: /data-sources/datastores permalink: /data-sources/datastores
nav_order: 3 nav_order: 3
parent: Data Sources parent: Data Sources
subcategory: Virtual Environment
--- ---
# Data Source: Datastores # Data Source: Datastores
@ -18,11 +19,11 @@ data "proxmox_virtual_environment_datastores" "first_node" {
} }
``` ```
## Arguments Reference ## Argument Reference
* `node_name` - (Required) A node name. * `node_name` - (Required) A node name.
## Attributes Reference ## Attribute Reference
* `active` - Whether the datastore is active. * `active` - Whether the datastore is active.
* `content_types` - The allowed content types. * `content_types` - The allowed content types.

View File

@ -4,6 +4,7 @@ title: DNS
permalink: /data-sources/dns permalink: /data-sources/dns
nav_order: 4 nav_order: 4
parent: Data Sources parent: Data Sources
subcategory: Virtual Environment
--- ---
# Data Source: DNS # Data Source: DNS
@ -18,11 +19,11 @@ data "proxmox_virtual_environment_dns" "first_node" {
} }
``` ```
## Arguments Reference ## Argument Reference
* `node_name` - (Required) A node name. * `node_name` - (Required) A node name.
## Attributes Reference ## Attribute Reference
* `domain` - The DNS search domain. * `domain` - The DNS search domain.
* `servers` - The DNS servers. * `servers` - The DNS servers.

View File

@ -4,6 +4,7 @@ title: Group
permalink: /data-sources/group permalink: /data-sources/group
nav_order: 5 nav_order: 5
parent: Data Sources parent: Data Sources
subcategory: Virtual Environment
--- ---
# Data Source: Group # Data Source: Group
@ -18,11 +19,11 @@ data "proxmox_virtual_environment_group" "operations_team" {
} }
``` ```
## Arguments Reference ## Argument Reference
* `group_id` - (Required) The group identifier. * `group_id` - (Required) The group identifier.
## Attributes Reference ## Attribute Reference
* `acl` - The access control list. * `acl` - The access control list.
* `path` - The path. * `path` - The path.

View File

@ -4,6 +4,7 @@ title: Groups
permalink: /data-sources/groups permalink: /data-sources/groups
nav_order: 6 nav_order: 6
parent: Data Sources parent: Data Sources
subcategory: Virtual Environment
--- ---
# Data Source: Groups # Data Source: Groups
@ -16,11 +17,11 @@ Retrieves basic information about all available user groups.
data "proxmox_virtual_environment_groups" "available_groups" {} data "proxmox_virtual_environment_groups" "available_groups" {}
``` ```
## Arguments Reference ## Argument Reference
There are no arguments available for this data source. There are no arguments available for this data source.
## Attributes Reference ## Attribute Reference
* `comments` - The group comments. * `comments` - The group comments.
* `group_ids` - The group identifiers. * `group_ids` - The group identifiers.

View File

@ -4,6 +4,7 @@ title: Hosts
permalink: /data-sources/hosts permalink: /data-sources/hosts
nav_order: 7 nav_order: 7
parent: Data Sources parent: Data Sources
subcategory: Virtual Environment
--- ---
# Data Source: Hosts # Data Source: Hosts
@ -18,11 +19,11 @@ data "proxmox_virtual_environment_hosts" "first_node_host_entries" {
} }
``` ```
## Arguments Reference ## Argument Reference
* `node_name` - (Required) A node name. * `node_name` - (Required) A node name.
## Attributes Reference ## Attribute Reference
* `addresses` - The IP addresses. * `addresses` - The IP addresses.
* `digest` - The SHA1 digest. * `digest` - The SHA1 digest.

View File

@ -4,6 +4,7 @@ title: Nodes
permalink: /data-sources/nodes permalink: /data-sources/nodes
nav_order: 8 nav_order: 8
parent: Data Sources parent: Data Sources
subcategory: Virtual Environment
--- ---
# Data Source: Nodes # Data Source: Nodes
@ -16,11 +17,11 @@ Retrieves information about all available nodes.
data "proxmox_virtual_environment_nodes" "available_nodes" {} data "proxmox_virtual_environment_nodes" "available_nodes" {}
``` ```
## Arguments Reference ## Argument Reference
There are no arguments available for this data source. There are no arguments available for this data source.
## Attributes Reference ## Attribute Reference
* `cpu_count` - The CPU count for each node. * `cpu_count` - The CPU count for each node.
* `cpu_utilization` - The CPU utilization on each node. * `cpu_utilization` - The CPU utilization on each node.

View File

@ -4,6 +4,7 @@ title: Pool
permalink: /data-sources/pool permalink: /data-sources/pool
nav_order: 9 nav_order: 9
parent: Data Sources parent: Data Sources
subcategory: Virtual Environment
--- ---
# Data Source: Pool # Data Source: Pool
@ -18,11 +19,11 @@ data "proxmox_virtual_environment_pool" "operations_pool" {
} }
``` ```
## Arguments Reference ## Argument Reference
* `pool_id` - (Required) The pool identifier. * `pool_id` - (Required) The pool identifier.
## Attributes Reference ## Attribute Reference
* `comment` - The pool comment. * `comment` - The pool comment.
* `members` - The pool members. * `members` - The pool members.

View File

@ -4,6 +4,7 @@ title: Pools
permalink: /data-sources/pools permalink: /data-sources/pools
nav_order: 10 nav_order: 10
parent: Data Sources parent: Data Sources
subcategory: Virtual Environment
--- ---
# Data Source: Pools # Data Source: Pools
@ -16,10 +17,10 @@ Retrieves the identifiers for all the available resource pools.
data "proxmox_virtual_environment_pools" "available_pools" {} data "proxmox_virtual_environment_pools" "available_pools" {}
``` ```
## Arguments Reference ## Argument Reference
There are no arguments available for this data source. There are no arguments available for this data source.
## Attributes Reference ## Attribute Reference
* `pool_ids` - The pool identifiers. * `pool_ids` - The pool identifiers.

View File

@ -4,6 +4,7 @@ title: Role
permalink: /data-sources/role permalink: /data-sources/role
nav_order: 11 nav_order: 11
parent: Data Sources parent: Data Sources
subcategory: Virtual Environment
--- ---
# Data Source: Role # Data Source: Role
@ -18,10 +19,10 @@ data "proxmox_virtual_environment_role" "operations_role" {
} }
``` ```
## Arguments Reference ## Argument Reference
* `role_id` - (Required) The role identifier. * `role_id` - (Required) The role identifier.
## Attributes Reference ## Attribute Reference
* `privileges` - The role privileges * `privileges` - The role privileges

View File

@ -4,6 +4,7 @@ title: Roles
permalink: /data-sources/roles permalink: /data-sources/roles
nav_order: 12 nav_order: 12
parent: Data Sources parent: Data Sources
subcategory: Virtual Environment
--- ---
# Data Source: Roles # Data Source: Roles
@ -16,11 +17,11 @@ Retrieves information about all the available roles.
data "proxmox_virtual_environment_roles" "available_roles" {} data "proxmox_virtual_environment_roles" "available_roles" {}
``` ```
## Arguments Reference ## Argument Reference
There are no arguments available for this data source. There are no arguments available for this data source.
## Attributes Reference ## Attribute Reference
* `privileges` - The role privileges. * `privileges` - The role privileges.
* `role_ids` - The role identifiers. * `role_ids` - The role identifiers.

View File

@ -4,6 +4,7 @@ title: Time
permalink: /data-sources/time permalink: /data-sources/time
nav_order: 13 nav_order: 13
parent: Data Sources parent: Data Sources
subcategory: Virtual Environment
--- ---
# Data Source: Time # Data Source: Time
@ -18,11 +19,11 @@ data "proxmox_virtual_environment_time" "first_node_time" {
} }
``` ```
## Arguments Reference ## Argument Reference
* `node_name` - (Required) A node name. * `node_name` - (Required) A node name.
## Attributes Reference ## Attribute Reference
* `local_time` - The node's local time. * `local_time` - The node's local time.
* `time_zone` - The node's time zone. * `time_zone` - The node's time zone.

View File

@ -4,6 +4,7 @@ title: User
permalink: /data-sources/user permalink: /data-sources/user
nav_order: 14 nav_order: 14
parent: Data Sources parent: Data Sources
subcategory: Virtual Environment
--- ---
# Data Source: User # Data Source: User
@ -18,11 +19,11 @@ data "proxmox_virtual_environment_user" "operations_user" {
} }
``` ```
## Arguments Reference ## Argument Reference
* `user_id` - (Required) The user identifier. * `user_id` - (Required) The user identifier.
## Attributes Reference ## Attribute Reference
* `acl` - The access control list. * `acl` - The access control list.
* `path` - The path. * `path` - The path.

View File

@ -4,6 +4,7 @@ title: Users
permalink: /data-sources/users permalink: /data-sources/users
nav_order: 15 nav_order: 15
parent: Data Sources parent: Data Sources
subcategory: Virtual Environment
--- ---
# Data Source: Users # Data Source: Users
@ -16,11 +17,11 @@ Retrieves information about all the available users.
data "proxmox_virtual_environment_users" "available_users" {} data "proxmox_virtual_environment_users" "available_users" {}
``` ```
## Arguments Reference ## Argument Reference
There are no arguments available for this data source. There are no arguments available for this data source.
## Attributes Reference ## Attribute Reference
* `comments` - The user comments. * `comments` - The user comments.
* `emails` - The users' email addresses. * `emails` - The users' email addresses.

View File

@ -4,6 +4,7 @@ title: Version
permalink: /data-sources/version permalink: /data-sources/version
nav_order: 16 nav_order: 16
parent: Data Sources parent: Data Sources
subcategory: Virtual Environment
--- ---
# Data Source: Version # Data Source: Version
@ -16,11 +17,11 @@ Retrieves the version information from the API endpoint.
data "proxmox_virtual_environment_version" "current_version" {} data "proxmox_virtual_environment_version" "current_version" {}
``` ```
## Arguments Reference ## Argument Reference
There are no arguments available for this data source. There are no arguments available for this data source.
## Attributes Reference ## Attribute Reference
* `keyboard_layout` - The keyboard layout. * `keyboard_layout` - The keyboard layout.
* `release` - The release number. * `release` - The release number.

View File

@ -64,7 +64,7 @@ $ export PROXMOX_VE_PASSWORD="a-strong-password"
$ terraform plan $ terraform plan
``` ```
## Arguments Reference ## Argument Reference
In addition to [generic provider arguments](https://www.terraform.io/docs/configuration/providers.html) (e.g. `alias` and `version`), the following arguments are supported in the Proxmox `provider` block: In addition to [generic provider arguments](https://www.terraform.io/docs/configuration/providers.html) (e.g. `alias` and `version`), the following arguments are supported in the Proxmox `provider` block:

View File

@ -4,6 +4,7 @@ title: Alias
permalink: /ressources/alias permalink: /ressources/alias
nav_order: 1 nav_order: 1
parent: Resources parent: Resources
subcategory: Virtual Environment
--- ---
# Resource: Alias # Resource: Alias
@ -27,12 +28,12 @@ resource "proxmox_virtual_environment_cluster_alias" "ubuntu_vm" {
} }
``` ```
## Arguments Reference ## Argument Reference
* `name` - (Required) Alias name. * `name` - (Required) Alias name.
* `cidr` - (Required) Network/IP specification in CIDR format. * `cidr` - (Required) Network/IP specification in CIDR format.
* `comment` - (Optional) Alias comment. * `comment` - (Optional) Alias comment.
## Attributes Reference ## Attribute Reference
There are no attribute references available for this resource. There are no attribute references available for this resource.

View File

@ -4,6 +4,7 @@ title: Certificate
permalink: /resources/certificate permalink: /resources/certificate
nav_order: 2 nav_order: 2
parent: Resources parent: Resources
subcategory: Virtual Environment
--- ---
# Resource: Certificate # Resource: Certificate
@ -43,14 +44,14 @@ resource "tls_self_signed_cert" "proxmox_virtual_environment_certificate" {
} }
``` ```
## Arguments Reference ## Argument Reference
* `certificate` - (Required) The PEM encoded certificate. * `certificate` - (Required) The PEM encoded certificate.
* `certificate_chain` - (Optional) The PEM encoded certificate chain. * `certificate_chain` - (Optional) The PEM encoded certificate chain.
* `node_name` - (Required) A node name. * `node_name` - (Required) A node name.
* `private_key` - (Required) The PEM encoded private key. * `private_key` - (Required) The PEM encoded private key.
## Attributes Reference ## Attribute Reference
* `expiration_date` - The expiration date (RFC 3339). * `expiration_date` - The expiration date (RFC 3339).
* `file_name` - The file name. * `file_name` - The file name.

View File

@ -4,6 +4,7 @@ title: Container
permalink: /resources/container permalink: /resources/container
nav_order: 3 nav_order: 3
parent: Resources parent: Resources
subcategory: Virtual Environment
--- ---
# Resource: Container # Resource: Container
@ -80,7 +81,7 @@ output "ubuntu_container_public_key" {
} }
``` ```
## Arguments Reference ## Argument Reference
* `clone` - (Optional) The cloning configuration. * `clone` - (Optional) The cloning configuration.
* `datastore_id` - (Optional) The identifier for the target datastore. * `datastore_id` - (Optional) The identifier for the target datastore.
@ -147,6 +148,6 @@ output "ubuntu_container_public_key" {
* `template` - (Optional) Whether to create a template (defaults to `false`). * `template` - (Optional) Whether to create a template (defaults to `false`).
* `vm_id` - (Optional) The virtual machine identifier * `vm_id` - (Optional) The virtual machine identifier
## Attributes Reference ## Attribute Reference
There are no additional attributes available for this resource. There are no additional attributes available for this resource.

View File

@ -4,6 +4,7 @@ title: DNS
permalink: /resources/dns permalink: /resources/dns
nav_order: 4 nav_order: 4
parent: Resources parent: Resources
subcategory: Virtual Environment
--- ---
# Resource: DNS # Resource: DNS
@ -28,13 +29,13 @@ data "proxmox_virtual_environment_dns" "first_node_dns_configuration" {
} }
``` ```
## Arguments Reference ## Argument Reference
* `domain` - (Required) The DNS search domain. * `domain` - (Required) The DNS search domain.
* `node_name` - (Required) A node name. * `node_name` - (Required) A node name.
* `servers` - (Optional) The DNS servers. * `servers` - (Optional) The DNS servers.
## Attributes Reference ## Attribute Reference
There are no additional attributes available for this resource. There are no additional attributes available for this resource.

View File

@ -4,6 +4,7 @@ title: File
permalink: /resources/file permalink: /resources/file
nav_order: 5 nav_order: 5
parent: Resources parent: Resources
subcategory: Virtual Environment
--- ---
# Resource: File # Resource: File
@ -24,7 +25,7 @@ resource "proxmox_virtual_environment_file" "ubuntu_container_template" {
} }
``` ```
## Arguments Reference ## Argument Reference
* `content_type` - (Optional) The content type. * `content_type` - (Optional) The content type.
* `backup` * `backup`
@ -43,7 +44,7 @@ resource "proxmox_virtual_environment_file" "ubuntu_container_template" {
* `file_name` - (Required) The file name. * `file_name` - (Required) The file name.
* `resize` - (Optional) The number of bytes to resize the file to. * `resize` - (Optional) The number of bytes to resize the file to.
## Attributes Reference ## Attribute Reference
* `file_modification_date` - The file modification date (RFC 3339). * `file_modification_date` - The file modification date (RFC 3339).
* `file_name` - The file name. * `file_name` - The file name.

View File

@ -4,6 +4,7 @@ title: Group
permalink: /resources/group permalink: /resources/group
nav_order: 6 nav_order: 6
parent: Resources parent: Resources
subcategory: Virtual Environment
--- ---
# Resource: Group # Resource: Group
@ -19,7 +20,7 @@ resource "proxmox_virtual_environment_group" "operations_team" {
} }
``` ```
## Arguments Reference ## Argument Reference
* `acl` - (Optional) The access control list (multiple blocks supported). * `acl` - (Optional) The access control list (multiple blocks supported).
* `path` - The path. * `path` - The path.
@ -28,6 +29,6 @@ resource "proxmox_virtual_environment_group" "operations_team" {
* `comment` - (Optional) The group comment. * `comment` - (Optional) The group comment.
* `group_id` - (Required) The group identifier. * `group_id` - (Required) The group identifier.
## Attributes Reference ## Attribute Reference
* `members` - The group members as a list of `username@realm` entries * `members` - The group members as a list of `username@realm` entries

View File

@ -4,6 +4,7 @@ title: Hosts
permalink: /resources/hosts permalink: /resources/hosts
nav_order: 7 nav_order: 7
parent: Resources parent: Resources
subcategory: Virtual Environment
--- ---
# Resource: Hosts # Resource: Hosts
@ -27,14 +28,14 @@ resource "proxmox_virtual_environment_hosts" "first_node_host_entries" {
} }
``` ```
## Arguments Reference ## Argument Reference
* `node_name` - (Required) A node name. * `node_name` - (Required) A node name.
* `entry` - (Required) A host entry (multiple blocks supported). * `entry` - (Required) A host entry (multiple blocks supported).
* `address` - (Required) The IP address. * `address` - (Required) The IP address.
* `hostnames` - (Required) The hostnames. * `hostnames` - (Required) The hostnames.
## Attributes Reference ## Attribute Reference
* `addresses` - The IP addresses. * `addresses` - The IP addresses.
* `digest` - The SHA1 digest. * `digest` - The SHA1 digest.

View File

@ -4,6 +4,7 @@ title: IPSet
permalink: /ressources/ipset permalink: /ressources/ipset
nav_order: 8 nav_order: 8
parent: Resources parent: Resources
subcategory: Virtual Environment
--- ---
# Resource: IPSet # Resource: IPSet
@ -35,7 +36,7 @@ resource "proxmox_virtual_environment_cluster_ipset" "ipset" {
} }
``` ```
## Arguments Reference ## Argument Reference
* `name` - (Required) Alias name. * `name` - (Required) Alias name.
* `comment` - (Optional) Alias comment. * `comment` - (Optional) Alias comment.
@ -44,6 +45,6 @@ resource "proxmox_virtual_environment_cluster_ipset" "ipset" {
* `comment` - (Optional) Arbitrary string annotation. * `comment` - (Optional) Arbitrary string annotation.
* `nomatch` - (Optional) Entries marked as `nomatch` are skipped as if those were not added to the set. * `nomatch` - (Optional) Entries marked as `nomatch` are skipped as if those were not added to the set.
## Attributes Reference ## Attribute Reference
There are no attribute references available for this resource. There are no attribute references available for this resource.

View File

@ -4,6 +4,7 @@ title: Pool
permalink: /resources/pool permalink: /resources/pool
nav_order: 9 nav_order: 9
parent: Resources parent: Resources
subcategory: Virtual Environment
--- ---
# Resource: Pool # Resource: Pool
@ -19,12 +20,12 @@ resource "proxmox_virtual_environment_pool" "operations_pool" {
} }
``` ```
## Arguments Reference ## Argument Reference
* `comment` - (Optional) The pool comment. * `comment` - (Optional) The pool comment.
* `pool_id` - (Required) The pool identifier. * `pool_id` - (Required) The pool identifier.
## Attributes Reference ## Attribute Reference
* `members` - The pool members. * `members` - The pool members.
* `datastore_id` - The datastore identifier. * `datastore_id` - The datastore identifier.

View File

@ -4,6 +4,7 @@ title: Role
permalink: /resources/role permalink: /resources/role
nav_order: 10 nav_order: 10
parent: Resources parent: Resources
subcategory: Virtual Environment
--- ---
# Resource: Role # Resource: Role
@ -22,11 +23,11 @@ resource "proxmox_virtual_environment_role" "operations_monitoring" {
} }
``` ```
## Arguments Reference ## Argument Reference
* `privileges` - (Required) The role privileges. * `privileges` - (Required) The role privileges.
* `role_id` - (Required) The role identifier. * `role_id` - (Required) The role identifier.
## Attributes Reference ## Attribute Reference
There are no additional attributes available for this resource. There are no additional attributes available for this resource.

View File

@ -4,6 +4,7 @@ title: Time
permalink: /resources/time permalink: /resources/time
nav_order: 11 nav_order: 11
parent: Resources parent: Resources
subcategory: Virtual Environment
--- ---
# Resource: Time # Resource: Time
@ -19,12 +20,12 @@ resource "proxmox_virtual_environment_time" "first_node_time" {
} }
``` ```
## Arguments Reference ## Argument Reference
* `node_name` - (Required) A node name. * `node_name` - (Required) A node name.
* `time_zone` - (Required) The node's time zone. * `time_zone` - (Required) The node's time zone.
## Attributes Reference ## Attribute Reference
* `local_time` - The node's local time. * `local_time` - The node's local time.
* `utc_time` - The node's local time formatted as UTC. * `utc_time` - The node's local time formatted as UTC.

View File

@ -4,6 +4,7 @@ title: User
permalink: /resources/user permalink: /resources/user
nav_order: 12 nav_order: 12
parent: Resources parent: Resources
subcategory: Virtual Environment
--- ---
# Resource: User # Resource: User
@ -34,7 +35,7 @@ resource "proxmox_virtual_environment_role" "operations_monitoring" {
} }
``` ```
## Arguments Reference ## Argument Reference
* `acl` - (Optional) The access control list (multiple blocks supported). * `acl` - (Optional) The access control list (multiple blocks supported).
* `path` - The path. * `path` - The path.
@ -51,6 +52,6 @@ resource "proxmox_virtual_environment_role" "operations_monitoring" {
* `password` - (Required) The user's password. * `password` - (Required) The user's password.
* `user_id` - (Required) The user identifier. * `user_id` - (Required) The user identifier.
## Attributes Reference ## Attribute Reference
There are no additional attributes available for this resource. There are no additional attributes available for this resource.

View File

@ -4,6 +4,7 @@ title: VM
permalink: /resources/vm permalink: /resources/vm
nav_order: 13 nav_order: 13
parent: Resources parent: Resources
subcategory: Virtual Environment
--- ---
# Resource: VM # Resource: VM
@ -91,7 +92,7 @@ output "ubuntu_vm_public_key" {
} }
``` ```
## Arguments Reference ## Argument Reference
* `acpi` - (Optional) Whether to enable ACPI (defaults to `true`). * `acpi` - (Optional) Whether to enable ACPI (defaults to `true`).
* `agent` - (Optional) The QEMU agent configuration. * `agent` - (Optional) The QEMU agent configuration.
@ -295,7 +296,7 @@ output "ubuntu_vm_public_key" {
* `vmware` - VMware Compatible. * `vmware` - VMware Compatible.
* `vm_id` - (Optional) The VM identifier. * `vm_id` - (Optional) The VM identifier.
## Attributes Reference ## Attribute Reference
* `ipv4_addresses` - The IPv4 addresses per network interface published by the QEMU agent (empty list when `agent.enabled` is `false`) * `ipv4_addresses` - The IPv4 addresses per network interface published by the QEMU agent (empty list when `agent.enabled` is `false`)
* `ipv6_addresses` - The IPv6 addresses per network interface published by the QEMU agent (empty list when `agent.enabled` is `false`) * `ipv6_addresses` - The IPv6 addresses per network interface published by the QEMU agent (empty list when `agent.enabled` is `false`)