Skip to content

Commit 6e2a5aa

Browse files
authored
chore: update docs to pve 9.1, fix example tests (#2350)
Signed-off-by: Pavel Boldyrev <627562+bpg@users.noreply.github.com>
1 parent db3d7ec commit 6e2a5aa

File tree

3 files changed

+3
-11
lines changed

3 files changed

+3
-11
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The project is not affiliated with [Proxmox Server Solutions GmbH](https://www.p
1919

2020
## Compatibility Promise
2121

22-
This provider is compatible with Proxmox VE 9.x (currently **9.0**). See [Known Issues](#known-issues) below for compatibility details.
22+
This provider is compatible with Proxmox VE 9.x (currently **9.1**). See [Known Issues](#known-issues) below for compatibility details.
2323

2424
> [!IMPORTANT]
2525
> Proxmox VE 8.x is supported, but some functionality might be limited or not work as expected. Testing against 8.x is not a priority, and issues specific to 8.x will not be addressed.
@@ -95,9 +95,9 @@ Work has started to migrate the provider to the new [Terraform Plugin Framework]
9595

9696
## Known Issues
9797

98-
### Proxmox VE 9.0
98+
### Proxmox VE 9.x
9999

100-
Proxmox VE 9.0 has a new API for managing HA resources, which is not yet supported by the provider, see [#2097](https://github.com/bpg/terraform-provider-proxmox/issues/2097) for more details.
100+
Proxmox VE 9.x has a new API for managing HA resources, which is not yet supported by the provider, see [#2097](https://github.com/bpg/terraform-provider-proxmox/issues/2097) for more details.
101101

102102
`apt_*` resources / datasources do not support the new deb822 style format.
103103

example/resource_virtual_environment_download_file.tf

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ resource "proxmox_virtual_environment_download_file" "ubuntu_24_04_lxc_img" {
55
datastore_id = "local"
66
node_name = data.proxmox_virtual_environment_nodes.example.names[0]
77
url = var.ubuntu_24_04_lxc_img_url
8-
checksum = var.ubuntu_24_04_lxc_img_checksum
9-
checksum_algorithm = "sha256"
108
upload_timeout = 4444
119
overwrite_unmanaged = true
1210
}

example/variables.tf

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,3 @@ variable "ubuntu_24_04_lxc_img_url" {
5757
type = string
5858
default = "https://cloud-images.ubuntu.com/minimal/releases/noble/release/ubuntu-24.04-minimal-cloudimg-amd64-root.tar.xz"
5959
}
60-
61-
variable "ubuntu_24_04_lxc_img_checksum" {
62-
description = "The checksum for the Ubuntu 24.10 LXC image"
63-
type = string
64-
default = "bdc90f9c0908e45dc602208da8fbd9e38db6483a1483fc7042332f5cd4e9aa22"
65-
}

0 commit comments

Comments
 (0)