From b2a3ac46333aa63890f623d033bc9eb6240f5ab8 Mon Sep 17 00:00:00 2001 From: tangowithfoxtrot <5676771+tangowithfoxtrot@users.noreply.github.com> Date: Tue, 14 Nov 2023 09:38:18 -0800 Subject: [PATCH] update secret import char limit (#3405) --- src/Api/SecretsManager/Models/Request/SMImportRequestModel.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Api/SecretsManager/Models/Request/SMImportRequestModel.cs b/src/Api/SecretsManager/Models/Request/SMImportRequestModel.cs index 13cc3b6f73..a63e2c180d 100644 --- a/src/Api/SecretsManager/Models/Request/SMImportRequestModel.cs +++ b/src/Api/SecretsManager/Models/Request/SMImportRequestModel.cs @@ -36,12 +36,12 @@ public class SMImportRequestModel [Required] [EncryptedString] - [EncryptedStringLength(1000)] + [EncryptedStringLength(35000)] public string Value { get; set; } [Required] [EncryptedString] - [EncryptedStringLength(1000)] + [EncryptedStringLength(10000)] public string Note { get; set; } [Required]