From faa1dce9eef4384cda07c8553a0d972c06be0e2f Mon Sep 17 00:00:00 2001 From: Geoff Baskwill Date: Wed, 7 Oct 2020 04:22:35 -0400 Subject: [PATCH] fix(Config Schema): Fix `Fn::Join` delimiter length (#8349) --- lib/plugins/aws/provider/awsProvider.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/plugins/aws/provider/awsProvider.js b/lib/plugins/aws/provider/awsProvider.js index 179ecdd453d..606297bbebf 100644 --- a/lib/plugins/aws/provider/awsProvider.js +++ b/lib/plugins/aws/provider/awsProvider.js @@ -259,7 +259,7 @@ class AwsProvider { type: 'array', minItems: 2, maxItems: 2, - items: [{ type: 'string', minLength: 1 }, { type: 'array' }], + items: [{ type: 'string' }, { type: 'array' }], additionalItems: false, }, },