From 2d63aa179adc68144e0185deb4249e7713f42d6d Mon Sep 17 00:00:00 2001 From: Keith Duncan Date: Fri, 26 Nov 2021 13:50:01 +1000 Subject: [PATCH] Remove the AllowedPattern from the instance types list --- templates/aws-stack.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates/aws-stack.yml b/templates/aws-stack.yml index bce91e103..0137fbb17 100644 --- a/templates/aws-stack.yml +++ b/templates/aws-stack.yml @@ -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: