From fc34140f4ec03958564a5868b339c40056f6b04e Mon Sep 17 00:00:00 2001 From: Noel Martin Llevares Date: Fri, 2 Oct 2020 21:34:59 +1000 Subject: [PATCH] fix(Config Schema): Fix `provider.tags` schema (#8314) --- lib/plugins/aws/provider/awsProvider.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/plugins/aws/provider/awsProvider.js b/lib/plugins/aws/provider/awsProvider.js index e7296b943cd..65abcf7a109 100644 --- a/lib/plugins/aws/provider/awsProvider.js +++ b/lib/plugins/aws/provider/awsProvider.js @@ -406,9 +406,8 @@ class AwsProvider { awsResourceTags: { type: 'object', patternProperties: { - '^(?!aws:)[\\w./=+-]{1,128}$': { + '^(?!aws:)[\\w./=+:-]{1,128}$': { type: 'string', - pattern: '^(?!aws:)[\\w./=+-]*$', maxLength: 256, }, },