Open aoggz opened 5 years ago
Hi @aoggz, thanks for the issue.
This appears to be an issue with the cloudformation specification provided by AWS.
https://d1uauaxba7bl26.cloudfront.net/latest/gzip/CloudFormationResourceSpecification.json
"VPCEndpointType": {
"Documentation": "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-vpcendpointtype",
"PrimitiveType": "String",
"Required": false,
"UpdateType": "Immutable"
},
I will raise this with AWS.
Okay, cool. I did see that in the resource specification in this repository but wasn't sure how to approach. Thank you for the quick response!
AWS::EC2::VPCEndpoint
is now available in the us-east-1
CloudFormation Resource Specification
cfn-lint
does not accept theVpcEndpointType
property on theAWS::EC2::VPCEndpoint
resource. It expectsVPCEndpointType
. CloudFormation does not acceptVPCEndpointType
.Here's the
yaml
for the resource currently at issue:Changing
VpcEndpointType
toVPCEndpointType
will cause the CloudFormation stack to fail, but it will appeasecfn-lint
.This was originally reported in #180.