Skip to content

Commit

Permalink
fix(aws-ec2): fix capitalization of "VPCEndpointType" to "VpcEndpoint…
Browse files Browse the repository at this point in the history
…Type" (#789)

Add a patch to the CFN spec that corrects the capitalization of
the "VpcEndpointType" property of "AWS::EC2::VPCEndpoint".

Fixes #765
  • Loading branch information
Elad Ben-Israel authored Sep 27, 2018
1 parent 10015cb commit 7a8ee2c
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions packages/@aws-cdk/cfnspec/spec-source/500_VPCEndpoint_patch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"ResourceTypes": {
"AWS::EC2::VPCEndpoint": {
"patch": {
"description": "Rename 'VPCEndpointType' to 'VpcEndpointType': https://github.com/awslabs/aws-cdk/issues/765",
"operations": [
{
"from": "/Properties/VPCEndpointType",
"op": "move",
"path": "/Properties/VpcEndpointType"
}
]
}
}
}
}

0 comments on commit 7a8ee2c

Please sign in to comment.