Skip to content

Commit

Permalink
Update QSS3KeyPrefix in the master template
Browse files Browse the repository at this point in the history
Sorry, In aws-quickstart#50 I forgot to also change the regex for the `QSS3KeyPrefix` in the master template.
  • Loading branch information
Jeroen van Erp committed Nov 6, 2018
1 parent aa9a522 commit ac98ae2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions templates/linux-bastion-master.template
Original file line number Diff line number Diff line change
Expand Up @@ -249,10 +249,10 @@
"Type": "String"
},
"QSS3KeyPrefix": {
"AllowedPattern": "^[0-9a-zA-Z-/]*$",
"ConstraintDescription": "Quick Start key prefix can include numbers, lowercase letters, uppercase letters, hyphens (-), and forward slash (/).",
"AllowedPattern": "^([0-9a-zA-Z-]+/)*$",
"ConstraintDescription": "Quick Start key prefix can include numbers, lowercase letters, uppercase letters, hyphens (-), and forward slash (/). The prefix should end with a forward slash (/).",
"Default": "quickstart-linux-bastion/",
"Description": "S3 key prefix for the Quick Start assets. Quick Start key prefix can include numbers, lowercase letters, uppercase letters, hyphens (-), and forward slash (/).",
"Description": "S3 key prefix for the Quick Start assets. Quick Start key prefix can include numbers, lowercase letters, uppercase letters, hyphens (-), and forward slash (/) and it should end with a forward slash (/).",
"Type": "String"
},
"RemoteAccessCIDR": {
Expand Down

0 comments on commit ac98ae2

Please sign in to comment.