Skip to content

Commit

Permalink
Add ConnectivityType property for NatGateway
Browse files Browse the repository at this point in the history
Newly released property for NatGateway to remove the internet gateway requirement when using NAT Gateway for internal natting. See updated Cloudformation docs:https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-natgateway.html
  • Loading branch information
reaperharvest authored and markpeek committed Jun 14, 2021
1 parent 5672f58 commit 87ea142
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion troposphere/ec2.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,8 @@ class NatGateway(AWSObject):
resource_type = "AWS::EC2::NatGateway"

props = {
"AllocationId": (str, True),
"AllocationId": (str, False),
"ConnectivityType": (str, False),
"SubnetId": (str, True),
"Tags": ((Tags, list), False),
}
Expand Down

0 comments on commit 87ea142

Please # to comment.