Skip to content

Commit

Permalink
AWS::EC2::VPCEndpoint.VpcEndpointType AllowedValues expansion (Gatewa…
Browse files Browse the repository at this point in the history
  • Loading branch information
PatMyron authored Nov 14, 2020
1 parent 2e6ef4e commit 26d0663
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion troposphere/validators.py
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ def vpn_tunnel_inside_cidr(cidr):


def vpc_endpoint_type(endpoint_type):
valid_types = ['Interface', 'Gateway']
valid_types = ['Interface', 'Gateway', 'GatewayLoadBalancer']
if endpoint_type not in valid_types:
raise ValueError(
'VpcEndpointType must be one of: "%s"' % (
Expand Down

0 comments on commit 26d0663

Please sign in to comment.