From a33aca81ecb4637f6858f1f2ed266859f77b82d8 Mon Sep 17 00:00:00 2001 From: Stephen Lewis Date: Wed, 4 Mar 2026 15:18:12 -0800 Subject: [PATCH] Removed KeyDescription field --- mmv1/api/type.go | 8 -------- 1 file changed, 8 deletions(-) diff --git a/mmv1/api/type.go b/mmv1/api/type.go index f4c92da2a599..eb41ddf67900 100644 --- a/mmv1/api/type.go +++ b/mmv1/api/type.go @@ -237,10 +237,6 @@ type Type struct { // The name of the key. Used in the Terraform schema as a field name. KeyName string `yaml:"key_name,omitempty"` - // Deprecated. A description of the key's format. Used in Terraform to describe - // the field in documentation. - KeyDescription string `yaml:"key_description,omitempty"` - // ==================== // KeyValuePairs Fields // ==================== @@ -528,10 +524,6 @@ func (t *Type) Validate(rName string) (es []error) { es = append(es, fmt.Errorf("property %s cannot be write_only and sensitive at the same time in resource %s", fullFieldPath, rName)) } - if t.KeyDescription != "" { - es = append(es, fmt.Errorf("property %s key_description can't be set in resource %s; it's deprecated", fullFieldPath, rName)) - } - t.validateLabelsField() switch {