all lists on lists.proxmox.com
 help / color / mirror / Atom feed
* [pbs-devel] [PATCH proxmox] s3-client: drop to restrictive minimum length check in region schema
@ 2025-08-22 15:12 Christian Ebner
  2025-08-25  9:36 ` [pbs-devel] applied: " Wolfgang Bumiller
  0 siblings, 1 reply; 2+ messages in thread
From: Christian Ebner @ 2025-08-22 15:12 UTC (permalink / raw)
  To: pbs-devel

As reported in the community forum, the current minimum length of 3
characters for regions to be set in the s3 endpoint configuration is
to restrictive, as at least OVH also allows 2 character regions [0].

The region regex pattern already limits the minimum input anyways, so
simply drop the currently set minimum length check.

[0] https://help.ovhcloud.com/csm/en-public-cloud-storage-s3-location?id=kb_article_view&sysparm_article=KB0047384

Fixes: https://forum.proxmox.com/threads/170146/
Signed-off-by: Christian Ebner <c.ebner@proxmox.com>
---
 proxmox-s3-client/src/api_types.rs | 1 -
 1 file changed, 1 deletion(-)

diff --git a/proxmox-s3-client/src/api_types.rs b/proxmox-s3-client/src/api_types.rs
index c68d85ef..115b1d2d 100644
--- a/proxmox-s3-client/src/api_types.rs
+++ b/proxmox-s3-client/src/api_types.rs
@@ -47,7 +47,6 @@ pub const S3_ENDPOINT_SCHEMA: Schema = StringSchema::new("Endpoint to access S3
 /// Region to access S3 object store.
 pub const S3_REGION_SCHEMA: Schema = StringSchema::new("Region to access S3 object store.")
     .format(&S3_REGION_FORMAT)
-    .min_length(3)
     .max_length(32)
     .schema();
 
-- 
2.47.2



_______________________________________________
pbs-devel mailing list
pbs-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pbs-devel


^ permalink raw reply	[flat|nested] 2+ messages in thread

* [pbs-devel] applied: [PATCH proxmox] s3-client: drop to restrictive minimum length check in region schema
  2025-08-22 15:12 [pbs-devel] [PATCH proxmox] s3-client: drop to restrictive minimum length check in region schema Christian Ebner
@ 2025-08-25  9:36 ` Wolfgang Bumiller
  0 siblings, 0 replies; 2+ messages in thread
From: Wolfgang Bumiller @ 2025-08-25  9:36 UTC (permalink / raw)
  To: Christian Ebner; +Cc: pbs-devel

applied, thanks

On Fri, Aug 22, 2025 at 05:12:39PM +0200, Christian Ebner wrote:
> As reported in the community forum, the current minimum length of 3
> characters for regions to be set in the s3 endpoint configuration is
> to restrictive, as at least OVH also allows 2 character regions [0].
> 
> The region regex pattern already limits the minimum input anyways, so
> simply drop the currently set minimum length check.
> 
> [0] https://help.ovhcloud.com/csm/en-public-cloud-storage-s3-location?id=kb_article_view&sysparm_article=KB0047384
> 
> Fixes: https://forum.proxmox.com/threads/170146/
> Signed-off-by: Christian Ebner <c.ebner@proxmox.com>
> ---
>  proxmox-s3-client/src/api_types.rs | 1 -
>  1 file changed, 1 deletion(-)
> 
> diff --git a/proxmox-s3-client/src/api_types.rs b/proxmox-s3-client/src/api_types.rs
> index c68d85ef..115b1d2d 100644
> --- a/proxmox-s3-client/src/api_types.rs
> +++ b/proxmox-s3-client/src/api_types.rs
> @@ -47,7 +47,6 @@ pub const S3_ENDPOINT_SCHEMA: Schema = StringSchema::new("Endpoint to access S3
>  /// Region to access S3 object store.
>  pub const S3_REGION_SCHEMA: Schema = StringSchema::new("Region to access S3 object store.")
>      .format(&S3_REGION_FORMAT)
> -    .min_length(3)
>      .max_length(32)
>      .schema();
>  
> -- 
> 2.47.2


_______________________________________________
pbs-devel mailing list
pbs-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pbs-devel


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2025-08-25  9:36 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-08-22 15:12 [pbs-devel] [PATCH proxmox] s3-client: drop to restrictive minimum length check in region schema Christian Ebner
2025-08-25  9:36 ` [pbs-devel] applied: " Wolfgang Bumiller

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal