Skip to content

Commit f946976

Browse files
authored
Merge pull request #18 from vdice/fix/extension-name-limit
fix(marketplace): limit extension name to 14 characters
2 parents 590f01d + 1bb807e commit f946976

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

marketplace/createUIDefinition.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -224,11 +224,11 @@
224224
"type": "Microsoft.Common.TextBox",
225225
"label": "Cluster extension resource name",
226226
"defaultValue": "",
227-
"toolTip": "Only lowercase alphanumeric characters are allowed, and the value must be 6-30 characters long.",
227+
"toolTip": "Only lowercase alphanumeric characters are allowed, and the value must be 6-14 characters long.",
228228
"constraints": {
229229
"required": true,
230-
"regex": "^[a-z0-9]{6,30}$",
231-
"validationMessage": "Only lowercase alphanumeric characters are allowed, and the value must be 6-30 characters long."
230+
"regex": "^[a-z0-9]{6,14}$",
231+
"validationMessage": "Only lowercase alphanumeric characters are allowed, and the value must be 6-14 characters long."
232232
},
233233
"visible": true
234234
}

0 commit comments

Comments
 (0)