Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(assetlibrary): properly quote escaped characters in cloudformation #185

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@awssolutions/cdf-assetlibrary",
"comment": "properly quote escaped regex pattern in cloudformation",
"type": "none"
}
],
"packageName": "@awssolutions/cdf-assetlibrary"
}
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ Parameters:
Type: List<AWS::EC2::Subnet::Id>
DbInstanceType:
Description: >
Neptune DB instance type. The list of available instance types for your region can be found here:
Neptune DB instance type. The list of available instance types for your region can be found here:
https://aws.amazon.com/neptune/pricing/
Type: String
AllowedPattern: '^db\\.[tr]\\d+[a-z0-9]*\\.[a-z0-9]*$'
AllowedPattern: "^db\\.[tr]\\d+[a-z0-9]*\\.[a-z0-9]*$"
ConstraintDescription: Must be a valid Neptune instance type.
CreateDBReplicaInstance:
Description: Create a read replica for MultiAZ?
Expand Down
Loading