From d4814ce010914d8da00291e7ad6bb4f67cb1f43f Mon Sep 17 00:00:00 2001 From: Aaron Pittenger Date: Wed, 24 Jan 2024 07:18:49 -0500 Subject: [PATCH 1/2] fix(assetlibrary): properly quote escaped characters in cloudformation --- .../services/assetlibrary/infrastructure/cfn-neptune.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/packages/services/assetlibrary/infrastructure/cfn-neptune.yaml b/source/packages/services/assetlibrary/infrastructure/cfn-neptune.yaml index 0720bf9b..edd247e6 100644 --- a/source/packages/services/assetlibrary/infrastructure/cfn-neptune.yaml +++ b/source/packages/services/assetlibrary/infrastructure/cfn-neptune.yaml @@ -30,10 +30,10 @@ Parameters: Type: List 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? From fe312fdfe377cf68db2ecb3ea3cc4b96b6eebee9 Mon Sep 17 00:00:00 2001 From: Aaron Pittenger Date: Wed, 24 Jan 2024 07:21:33 -0500 Subject: [PATCH 2/2] chore: changelogs --- ...ix_db_instance_type_parameter_2024-01-24-12-21.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 source/common/changes/@awssolutions/cdf-assetlibrary/fix_db_instance_type_parameter_2024-01-24-12-21.json diff --git a/source/common/changes/@awssolutions/cdf-assetlibrary/fix_db_instance_type_parameter_2024-01-24-12-21.json b/source/common/changes/@awssolutions/cdf-assetlibrary/fix_db_instance_type_parameter_2024-01-24-12-21.json new file mode 100644 index 00000000..4ad82cfd --- /dev/null +++ b/source/common/changes/@awssolutions/cdf-assetlibrary/fix_db_instance_type_parameter_2024-01-24-12-21.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@awssolutions/cdf-assetlibrary", + "comment": "properly quote escaped regex pattern in cloudformation", + "type": "none" + } + ], + "packageName": "@awssolutions/cdf-assetlibrary" +} \ No newline at end of file