Fix: VpnGatewayId parameter casing in ec2:CreateVpnConnection request (#3401)
Fixes #3397
This commit is contained in:
parent
403b06d9c5
commit
c0a25bbd9a
2 changed files with 24 additions and 2 deletions
|
|
@ -7,7 +7,7 @@ class VPNConnections(BaseResponse):
|
|||
def create_vpn_connection(self):
|
||||
type = self._get_param("Type")
|
||||
cgw_id = self._get_param("CustomerGatewayId")
|
||||
vgw_id = self._get_param("VPNGatewayId")
|
||||
vgw_id = self._get_param("VpnGatewayId")
|
||||
static_routes = self._get_param("StaticRoutesOnly")
|
||||
vpn_connection = self.ec2_backend.create_vpn_connection(
|
||||
type, cgw_id, vgw_id, static_routes_only=static_routes
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue