diff --git a/port/action/schema.go b/port/action/schema.go index ff6abac0..1583d9a2 100644 --- a/port/action/schema.go +++ b/port/action/schema.go @@ -135,8 +135,11 @@ func ActionSchema() map[string]schema.Attribute { NestedObject: schema.NestedAttributeObject{ Attributes: map[string]schema.Attribute{ "title": schema.StringAttribute{ - MarkdownDescription: "The step's title", + MarkdownDescription: "The step's title (max 25 characters)", Required: true, + Validators: []validator.String{ + stringvalidator.LengthAtMost(25), + }, }, "order": schema.ListAttribute{ MarkdownDescription: "The order of the properties in this step",