Skip to content

Commit

Permalink
fix(Config Schema): Fix Fn::Join delimiter length (#8349)
Browse files Browse the repository at this point in the history
  • Loading branch information
glb committed Oct 7, 2020
1 parent d2fb696 commit faa1dce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/plugins/aws/provider/awsProvider.js
Expand Up @@ -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,
},
},
Expand Down

0 comments on commit faa1dce

Please sign in to comment.