0
0
mirror of https://github.com/bpg/terraform-provider-proxmox.git synced 2025-06-30 02:31:10 +00:00

chore(docs): indicate support of Proxmox VE 8.4 (#1899)

Signed-off-by: Pavel Boldyrev <627562+bpg@users.noreply.github.com>
This commit is contained in:
Pavel Boldyrev 2025-04-11 12:11:08 -04:00 committed by GitHub
parent 504a84cb83
commit 35a529609d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 9 additions and 5 deletions

View File

@ -17,7 +17,7 @@ ability to merge PRs and respond to issues.
> `$GOPATH` is the path to your Go workspace. If undefined, it defaults to `$HOME/go` on Linux and macOS, and `%USERPROFILE%\go` on Windows.
> [!NOTE]
> The provider requires Go 1.23 or later to build.
> The provider requires Go 1.24 or later to build.
- Clone the repository to: `$GOPATH/src/github.com/bpg/terraform-provider-proxmox`:

View File

@ -13,9 +13,13 @@ A Terraform / OpenTofu Provider that adds support for Proxmox Virtual Environmen
This repository is a fork of <https://github.com/danitso/terraform-provider-proxmox> which is no longer maintained.
## Disclaimer
This project is a personal open-source initiative and is not affiliated with, endorsed by, or associated with any of my past or present employers. All opinions, code, and documentation here are solely my own.
## Compatibility Promise
This provider is compatible with Proxmox VE 8.x (currently **8.3**).
This provider is compatible with Proxmox VE 8.x (currently **8.4**).
> [!IMPORTANT]
> Proxmox VE 7.x is NOT supported. While some features might work with 7.x, we do not test against it, and issues specific to 7.x will not be addressed.

View File

@ -28,13 +28,13 @@ func TestAccDatasourceVersion(t *testing.T) {
{
Config: `data "proxmox_virtual_environment_version" "test" {}`,
Check: resource.ComposeAggregateTestCheckFunc(
resource.TestCheckResourceAttr(datasourceName, "release", "8.3"),
resource.TestCheckResourceAttr(datasourceName, "release", "8.4"),
resource.TestCheckResourceAttrSet(datasourceName, "repository_id"),
resource.TestCheckResourceAttrWith(datasourceName, "version", func(value string) error {
if strings.HasPrefix(value, "8.3") {
if strings.HasPrefix(value, "8.4") {
return nil
}
return fmt.Errorf("version %s does not start with 8.3", value)
return fmt.Errorf("version %s does not start with 8.4", value)
}),
resource.TestCheckResourceAttrSet(datasourceName, "id"),
),