From 592007de7aea47461f033a697d0c456b5f1b3ae8 Mon Sep 17 00:00:00 2001 From: Simon Stier Date: Mon, 22 Apr 2024 15:51:06 +0200 Subject: [PATCH] DNS: Fix rrsetNameLength validation (#345) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix rrsetNameLength validation * remove string length validation entirely Co-authored-by: Diogo Ferrão --------- Co-authored-by: Diogo Ferrão --- stackit/internal/services/dns/recordset/resource.go | 1 - 1 file changed, 1 deletion(-) diff --git a/stackit/internal/services/dns/recordset/resource.go b/stackit/internal/services/dns/recordset/resource.go index a9d82fa6..90ca3c36 100644 --- a/stackit/internal/services/dns/recordset/resource.go +++ b/stackit/internal/services/dns/recordset/resource.go @@ -149,7 +149,6 @@ func (r *recordSetResource) Schema(_ context.Context, _ resource.SchemaRequest, Required: true, Validators: []validator.String{ stringvalidator.LengthAtLeast(1), - stringvalidator.LengthAtMost(63), }, }, "fqdn": schema.StringAttribute{