0
0
mirror of https://github.com/bpg/terraform-provider-proxmox.git synced 2025-08-22 11:28:33 +00:00

chore(docs): add ceph squid to apt_standard_repository docs (#2063)

* 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>
This commit is contained in:
Ryan W 2025-07-30 03:29:07 +01:00 committed by GitHub
parent 209d10cc0b
commit 5c3394121f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 2 deletions

View File

@ -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

View File

@ -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(),
},