0
0
mirror of https://github.com/bpg/terraform-provider-proxmox.git synced 2025-08-25 04:45:46 +00:00

Merge branch 'main' into main

This commit is contained in:
maidlover 2025-07-30 08:39:34 +00:00 committed by GitHub
commit b42aff40d3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 15 additions and 2 deletions

View File

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

View File

@ -203,6 +203,9 @@
<td align="center" valign="top" width="14.28%"><a href="https://github.com/smhanes15"><img src="https://avatars.githubusercontent.com/u/11663427?v=4?s=100" width="100px;" alt="Shawn M. Hanes"/><br /><sub><b>Shawn M. Hanes</b></sub></a><br /><a href="https://github.com/bpg/terraform-provider-proxmox/commits?author=smhanes15" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://marshallford.me"><img src="https://avatars.githubusercontent.com/u/696447?v=4?s=100" width="100px;" alt="Marshall Ford"/><br /><sub><b>Marshall Ford</b></sub></a><br /><a href="https://github.com/bpg/terraform-provider-proxmox/commits?author=marshallford" title="Code">💻</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/twentybit"><img src="https://avatars.githubusercontent.com/u/60849886?v=4?s=100" width="100px;" alt="Ryan W"/><br /><sub><b>Ryan W</b></sub></a><br /><a href="https://github.com/bpg/terraform-provider-proxmox/commits?author=twentybit" title="Documentation">📖</a></td>
</tr>
</tbody>
<tfoot>
<tr>

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