From f9475409839027738a32b55df8ea870fd2e0e02e Mon Sep 17 00:00:00 2001 From: John Morrissey Date: Tue, 30 Sep 2014 12:26:01 -0400 Subject: [PATCH] allow [+.@] in KeyName --- cloudformation/cfncluster.cfn.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cloudformation/cfncluster.cfn.json b/cloudformation/cfncluster.cfn.json index 425dd0c8c4..3466f7024f 100644 --- a/cloudformation/cfncluster.cfn.json +++ b/cloudformation/cfncluster.cfn.json @@ -7,8 +7,8 @@ "Type" : "String", "MinLength" : "1", "MaxLength" : "64", - "AllowedPattern" : "[-_ a-zA-Z0-9]*", - "ConstraintDescription" : "can contain only alphanumeric characters, spaces, dashes and underscores." + "AllowedPattern" : "[-+_.@ a-zA-Z0-9]+", + "ConstraintDescription" : "can contain only alphanumeric characters, spaces, dashes, plusses, underscores, dots, and at signs." }, "MasterInstanceType" : { "Description" : "Master Server EC2 instance type",