From dc6a934cd06d5637dde256d694b014c31fc2fcf4 Mon Sep 17 00:00:00 2001 From: GokceGK Date: Mon, 17 Aug 2026 09:34:07 +0200 Subject: [PATCH] feat(albcertificate): increase cert lengths to 64kb relates to STACKITTPR-803 --- .../internal/services/albcertificates/certificate/resource.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stackit/internal/services/albcertificates/certificate/resource.go b/stackit/internal/services/albcertificates/certificate/resource.go index d7878a38b..9ee04e457 100644 --- a/stackit/internal/services/albcertificates/certificate/resource.go +++ b/stackit/internal/services/albcertificates/certificate/resource.go @@ -187,7 +187,7 @@ The example below creates the supporting infrastructure using the STACKIT Terraf stringplanmodifier.RequiresReplace(), }, Validators: []validator.String{ - stringvalidator.LengthAtMost(8192), + stringvalidator.LengthAtMost(65536), }, }, "public_key": schema.StringAttribute{ @@ -197,7 +197,7 @@ The example below creates the supporting infrastructure using the STACKIT Terraf stringplanmodifier.RequiresReplace(), }, Validators: []validator.String{ - stringvalidator.LengthAtMost(8192), + stringvalidator.LengthAtMost(65536), }, }, },