Skip to content

Commit 2d63aa1

Browse files
committed
Remove the AllowedPattern from the instance types list
1 parent d898596 commit 2d63aa1

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

templates/aws-stack.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -233,8 +233,9 @@ Parameters:
233233
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).
234234
Type: CommaDelimitedList
235235
Default: t3.large
236-
MinLength: 1
237-
AllowedPattern: "^[\\w\\.]+(,[\\w\\.]*){0,3}$"
236+
# AllowedPattern and MinLength not allowed on a CommaDelimitedList :(
237+
# MinLength: 1
238+
# AllowedPattern: "^[\\w\\.]+(,[\\w\\.]*){0,3}$"
238239
ConstraintDescription: "must contain 1-4 instance types separated by commas. No space before/after the comma."
239240

240241
InstanceTypes:

0 commit comments

Comments
 (0)