From 5c3394121ff68efe3928be2ca957076dc4d4f2c8 Mon Sep 17 00:00:00 2001 From: Ryan W <60849886+twentybit@users.noreply.github.com> Date: Wed, 30 Jul 2025 03:29:07 +0100 Subject: [PATCH] chore(docs): add ceph squid to `apt_standard_repository` docs (#2063) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Added ceph squid to apt_standard_repository docs Signed-off-by: Twentybit <60849886+twentybit@users.noreply.github.com> * chore(deps): update image golang (14fd8a5 → ef5b4be) (#2061) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Signed-off-by: Twentybit <60849886+twentybit@users.noreply.github.com> --------- Signed-off-by: Twentybit <60849886+twentybit@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Pavel Boldyrev <627562+bpg@users.noreply.github.com> --- docs/resources/virtual_environment_apt_standard_repository.md | 2 +- fwprovider/nodes/apt/resource_standard_repo.go | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) 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(), },