From bf0a66c9ddc5444e15c9c5ab3bb15a725f04d216 Mon Sep 17 00:00:00 2001 From: Pat Myron Date: Fri, 3 Apr 2020 09:16:08 -0700 Subject: [PATCH] AWS::EC2::SecurityGroupIngress.SourcePrefixListId https://github.com/cloudtools/troposphere/issues/1621 --- troposphere/ec2.py | 1 + 1 file changed, 1 insertion(+) diff --git a/troposphere/ec2.py b/troposphere/ec2.py index ca63f783f..1ac15a086 100644 --- a/troposphere/ec2.py +++ b/troposphere/ec2.py @@ -534,6 +534,7 @@ class SecurityGroupIngress(AWSObject): 'GroupName': (basestring, False), 'GroupId': (basestring, False), 'IpProtocol': (basestring, True), + 'SourcePrefixListId': (basestring, False), 'SourceSecurityGroupName': (basestring, False), 'SourceSecurityGroupId': (basestring, False), 'SourceSecurityGroupOwnerId': (basestring, False),