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 2d63aa1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions templates/aws-stack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -233,8 +233,9 @@ Parameters:
Description: Instance type. Comma-separated list with 1-4 instance types. The order is a prioritized preference for launching OnDemand instances, and a non-prioritized list of types to consider for Spot Instances (where used).
Type: CommaDelimitedList
Default: t3.large
MinLength: 1
AllowedPattern: "^[\\w\\.]+(,[\\w\\.]*){0,3}$"
# AllowedPattern and MinLength not allowed on a CommaDelimitedList :(
# MinLength: 1
# 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 2d63aa1

Please sign in to comment.