Skip to content

Commit

Permalink
feat(Config Schema): Recognize Fn::Transport at resoures.Resources
Browse files Browse the repository at this point in the history
(PR #8337)
  • Loading branch information
rzaldana committed Oct 6, 2020
1 parent 96ed7db commit 11a9d37
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions lib/plugins/aws/provider/awsProvider.js
Expand Up @@ -796,6 +796,17 @@ class AwsProvider {
// See also https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/resources-section-structure.html
Resources: {
type: 'object',
properties: {
'Fn::Transform': {
type: 'object',
properties: {
Name: { type: 'string' },
Parameters: { type: 'object' },
},
required: ['Name'],
additionalProperties: false,
},
},
patternProperties: {
'^[a-zA-Z0-9]{1,255}$': {
type: 'object',
Expand Down

0 comments on commit 11a9d37

Please sign in to comment.