Skip to content

Commit

Permalink
Remove the AllowedPattern from the instance types list
Browse files Browse the repository at this point in the history
  • Loading branch information
keithduncan committed Nov 26, 2021
1 parent d898596 commit 1f26405
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion templates/aws-stack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,8 @@ Parameters:
Type: CommaDelimitedList
Default: t3.large
MinLength: 1
AllowedPattern: "^[\\w\\.]+(,[\\w\\.]*){0,3}$"
# AllowedPattern not allowed on a CommaDelimitedList :(
# AllowedPattern: "^[\\w\\.]+(,[\\w\\.]*){0,3}$"
ConstraintDescription: "must contain 1-4 instance types separated by commas. No space before/after the comma."

InstanceTypes:
Expand Down

0 comments on commit 1f26405

Please sign in to comment.