Arc - Update Postgres name length limit (#13807)

Arc - Update Postgres name length limit. It was recently reduced from 12 to 11.
This commit is contained in:
Brian Bergeron
2020-12-15 10:50:18 -08:00
committed by GitHub
parent 1903388b6b
commit 725cd9f82f
2 changed files with 2 additions and 2 deletions

View File

@@ -868,7 +868,7 @@
"description": "%arc.postgres.server.group.name.validation.description%",
"validations" : [{
"type": "regex_match",
"regex": "^[a-z]([-a-z0-9]{0,10}[a-z0-9])?$",
"regex": "^[a-z]([-a-z0-9]{0,9}[a-z0-9])?$",
"description": "%arc.postgres.server.group.name.validation.description%"
}],
"required": true