mirror of
https://github.com/bpg/terraform-provider-proxmox.git
synced 2025-08-22 19:38:35 +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:
parent
504a84cb83
commit
35a529609d
@ -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.
|
> `$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]
|
> [!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`:
|
- Clone the repository to: `$GOPATH/src/github.com/bpg/terraform-provider-proxmox`:
|
||||||
|
|
||||||
|
@ -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.
|
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
|
## 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]
|
> [!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.
|
> 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.
|
||||||
|
@ -28,13 +28,13 @@ func TestAccDatasourceVersion(t *testing.T) {
|
|||||||
{
|
{
|
||||||
Config: `data "proxmox_virtual_environment_version" "test" {}`,
|
Config: `data "proxmox_virtual_environment_version" "test" {}`,
|
||||||
Check: resource.ComposeAggregateTestCheckFunc(
|
Check: resource.ComposeAggregateTestCheckFunc(
|
||||||
resource.TestCheckResourceAttr(datasourceName, "release", "8.3"),
|
resource.TestCheckResourceAttr(datasourceName, "release", "8.4"),
|
||||||
resource.TestCheckResourceAttrSet(datasourceName, "repository_id"),
|
resource.TestCheckResourceAttrSet(datasourceName, "repository_id"),
|
||||||
resource.TestCheckResourceAttrWith(datasourceName, "version", func(value string) error {
|
resource.TestCheckResourceAttrWith(datasourceName, "version", func(value string) error {
|
||||||
if strings.HasPrefix(value, "8.3") {
|
if strings.HasPrefix(value, "8.4") {
|
||||||
return nil
|
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"),
|
resource.TestCheckResourceAttrSet(datasourceName, "id"),
|
||||||
),
|
),
|
||||||
|
Loading…
Reference in New Issue
Block a user