fix(vault): correct S3 timeout config placement

This commit is contained in:
Story Crater Bot
2026-07-21 15:26:41 -07:00
parent 5170921eea
commit c9bf9f7dce
+2 -4
View File
@@ -124,7 +124,8 @@ server:
# s3_force_path_style: MinIO uses path-style URLs (not virtual-hosted). # s3_force_path_style: MinIO uses path-style URLs (not virtual-hosted).
# disable_ssl: MinIO in this cluster has no TLS. # disable_ssl: MinIO in this cluster has no TLS.
storage "s3" { storage "s3" {
endpoint = "http://minio.storage.svc.cluster.local" max_parallel = 128
s3_session_timeout = "5s" endpoint = "http://minio.storage.svc.cluster.local"
bucket = "vault" bucket = "vault"
region = "us-east-1" region = "us-east-1"
s3_force_path_style = "true" s3_force_path_style = "true"
@@ -170,6 +171,3 @@ serverTelemetry:
interval: 30s interval: 30s
scrapeTimeout: 10s scrapeTimeout: 10s
# Add timeout to prevent hanging
max_parallel = "128"
s3_session_timeout = "5s"