diff --git a/.all-contributorsrc b/.all-contributorsrc index 20f0030e..cb780f44 100644 --- a/.all-contributorsrc +++ b/.all-contributorsrc @@ -1443,6 +1443,15 @@ "contributions": [ "code" ] + }, + { + "login": "twentybit", + "name": "Ryan W", + "avatar_url": "https://avatars.githubusercontent.com/u/60849886?v=4", + "profile": "https://github.com/twentybit", + "contributions": [ + "doc" + ] } ], "contributorsPerLine": 7, diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 727e9379..94c285d8 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -203,6 +203,9 @@ Shawn M. Hanes
Shawn M. Hanes

💻 Marshall Ford
Marshall Ford

💻 + + Ryan W
Ryan W

📖 + diff --git a/docs/resources/virtual_environment_apt_standard_repository.md b/docs/resources/virtual_environment_apt_standard_repository.md index 40ca4403..d6e2f1b7 100644 --- a/docs/resources/virtual_environment_apt_standard_repository.md +++ b/docs/resources/virtual_environment_apt_standard_repository.md @@ -32,7 +32,7 @@ resource "proxmox_virtual_environment_apt_repository" "example" { ### Required -- `handle` (String) The handle of the APT standard repository. Must be `ceph-quincy-enterprise` | `ceph-quincy-no-subscription` | `ceph-quincy-test` | `ceph-reef-enterprise` | `ceph-reef-no-subscription` | `ceph-reef-test` | `enterprise` | `no-subscription` | `test`. +- `handle` (String) The handle of the APT standard repository. Must be `ceph-quincy-enterprise` | `ceph-quincy-no-subscription` | `ceph-quincy-test` | `ceph-reef-enterprise` | `ceph-reef-no-subscription` | `ceph-reef-test` | `ceph-squid-enterprise` | `ceph-squid-no-subscription` | `ceph-squid-test` | `enterprise` | `no-subscription` | `test`. - `node` (String) The name of the target Proxmox VE node. ### Read-Only diff --git a/fwprovider/nodes/apt/resource_standard_repo.go b/fwprovider/nodes/apt/resource_standard_repo.go index a5a8bdec..05819545 100644 --- a/fwprovider/nodes/apt/resource_standard_repo.go +++ b/fwprovider/nodes/apt/resource_standard_repo.go @@ -244,7 +244,8 @@ func (r *standardRepositoryResource) Schema( Description: "The handle of the APT standard repository.", MarkdownDescription: "The handle of the APT standard repository. Must be `ceph-quincy-enterprise` | " + "`ceph-quincy-no-subscription` | `ceph-quincy-test` | `ceph-reef-enterprise` | `ceph-reef-no-subscription` " + - "| `ceph-reef-test` | `enterprise` | `no-subscription` | `test`.", + "| `ceph-reef-test` | `ceph-squid-enterprise` | `ceph-squid-no-subscription` | `ceph-squid-test` " + + "| `enterprise` | `no-subscription` | `test`.", PlanModifiers: []planmodifier.String{ stringplanmodifier.RequiresReplace(), },