File tree 2 files changed +5
-2
lines changed
2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -514,7 +514,7 @@ Optional:
514
514
Required:
515
515
516
516
- ` order ` (List of String) The order of the properties in this step
517
- - ` title ` (String) The step's title
517
+ - ` title ` (String) The step's title (max 25 characters)
518
518
519
519
520
520
<a id =" nestedatt--self_service_trigger--user_properties " ></a >
Original file line number Diff line number Diff line change @@ -133,8 +133,11 @@ func ActionSchema() map[string]schema.Attribute {
133
133
NestedObject : schema.NestedAttributeObject {
134
134
Attributes : map [string ]schema.Attribute {
135
135
"title" : schema.StringAttribute {
136
- MarkdownDescription : "The step's title" ,
136
+ MarkdownDescription : "The step's title (max 25 characters) " ,
137
137
Required : true ,
138
+ Validators : []validator.String {
139
+ stringvalidator .LengthAtMost (25 ),
140
+ },
138
141
},
139
142
"order" : schema.ListAttribute {
140
143
MarkdownDescription : "The order of the properties in this step" ,
You can’t perform that action at this time.
0 commit comments