Skip to content

Commit

Permalink
fix(Config Schema): Recognize string value at DependsOn
Browse files Browse the repository at this point in the history
  • Loading branch information
medikoo committed Sep 15, 2020
1 parent 1fb338b commit 4c36753
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/plugins/aws/provider/awsProvider.js
Expand Up @@ -227,7 +227,9 @@ class AwsProvider {
Properties: { type: 'object' },
CreationPolicy: { type: 'object' },
DeletionPolicy: { type: 'string' },
DependsOn: { type: 'array', items: { type: 'string' } },
DependsOn: {
oneOf: [{ type: 'string' }, { type: 'array', items: { type: 'string' } }],
},
Metadata: { type: 'object' },
UpdatePolicy: { type: 'object' },
UpdateReplacePolicy: { type: 'string' },
Expand Down

0 comments on commit 4c36753

Please sign in to comment.