You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The "WebsiteS3BucketName" bucket name parameter doesn't inform the user of the S3 bucket naming rules nor does the template have format checking/error handling to catch an improperly named bucket. When a user submits an incorrectly formatted bucket name (e.g. sample_bucket), the deployment fails.
Recommend adding an AllowedPattern term:
e.g.
QSS3BucketName": {
"AllowedPattern": "^[0-9a-zA-Z]+([0-9a-zA-Z-][0-9a-zA-Z])$",
"ConstraintDescription": "Quick Start bucket name can include numbers, lowercase letters, uppercase letters, and hyphens (-). It cannot start or end with a hyphen (-)."
The text was updated successfully, but these errors were encountered:
The "WebsiteS3BucketName" bucket name parameter doesn't inform the user of the S3 bucket naming rules nor does the template have format checking/error handling to catch an improperly named bucket. When a user submits an incorrectly formatted bucket name (e.g. sample_bucket), the deployment fails.
Recommend adding an AllowedPattern term:
e.g.
QSS3BucketName": {
"AllowedPattern": "^[0-9a-zA-Z]+([0-9a-zA-Z-][0-9a-zA-Z])$",
"ConstraintDescription": "Quick Start bucket name can include numbers, lowercase letters, uppercase letters, and hyphens (-). It cannot start or end with a hyphen (-)."
The text was updated successfully, but these errors were encountered: