From 679787699c0c972b909521a8b9ce21b43f6f39ec Mon Sep 17 00:00:00 2001 From: Ben Gridley Date: Mon, 12 Feb 2018 16:06:32 -0700 Subject: [PATCH] Add vpc_peering_connection_id to describe_route_tables route_keys This is required to fix state module function _routes_present when using a vpc_peering_connection. --- salt/modules/boto_vpc.py | 1 + 1 file changed, 1 insertion(+) diff --git a/salt/modules/boto_vpc.py b/salt/modules/boto_vpc.py index bebaafdd57..2fa6da3c2d 100644 --- a/salt/modules/boto_vpc.py +++ b/salt/modules/boto_vpc.py @@ -2576,6 +2576,7 @@ def describe_route_tables(route_table_id=None, route_table_name=None, 'instance_id': 'Instance', 'interface_id': 'NetworkInterfaceId', 'nat_gateway_id': 'NatGatewayId', + 'vpc_peering_connection_id': 'VpcPeeringConnectionId', } assoc_keys = {'id': 'RouteTableAssociationId', 'main': 'Main',