Skip to content

Commit

Permalink
Merge pull request #185 from bissell-homecare-inc/fix_db_instance_typ…
Browse files Browse the repository at this point in the history
…e_parameter

fix(assetlibrary): properly quote escaped characters in cloudformation
  • Loading branch information
ts-amz authored Feb 8, 2024
2 parents e1edd47 + fe312fd commit f89da46
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
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

0 comments on commit f89da46

Please sign in to comment.