Deleting a VPN Connection
You can delete a VPN connection between your corporate network and one of your Nets in the OUTSCALE Cloud.
This action deletes the secure VPN tunnel between the client gateway and the virtual gateway.
Deleting a VPN Connection Using Cockpit v2
-
In the VPN Connections dashboard, check the box of the VPN Connection you want to delete.
The VPN Connection is selected.Multiselection is available.
-
Click Delete.
A confirmation dialog box appears. -
Click Delete.
The VPN Connection is deleted.Deleted resources remain visible for 1 hour.
Deleting a VPN Connection Using OSC CLI
The DeleteVpnConnection command deletes a specified VPN connection.
If you want to delete a Net and all its dependencies, we recommend to detach the virtual gateway from the Net and delete the Net before deleting the VPN connection. This enables you to delete the Net without waiting for the VPN connection to be deleted.
$ osc-cli api DeleteVpnConnection --profile "default" \
--VpnConnectionId "vpn-12345678"
This command contains the following attributes that you need to specify:
-
DryRun
: (optional) If true, checks whether you have the required permissions to perform the action. -
VpnConnectionId
: The ID of the VPN connection you want to delete.
The DeleteVpnConnection command returns the following elements:
-
ResponseContext
: Information about the context of the response.-
RequestId
: The ID of the request.
-
{
"ResponseContext": {
"RequestId": "0475ca1e-d0c5-441d-712a-da55a4175157"
}
}
Deleting a VPN Connection Using oapi-cli
The DeleteVpnConnection command deletes a specified VPN connection.
If you want to delete a Net and all its dependencies, we recommend to detach the virtual gateway from the Net and delete the Net before deleting the VPN connection. This enables you to delete the Net without waiting for the VPN connection to be deleted.
$ oapi-cli --profile "default" DeleteVpnConnection \
--VpnConnectionId "vpn-12345678"
This command contains the following attributes that you need to specify:
-
DryRun
: (optional) If true, checks whether you have the required permissions to perform the action. -
VpnConnectionId
: The ID of the VPN connection you want to delete.
The DeleteVpnConnection command returns the following elements:
-
ResponseContext
: Information about the context of the response.-
RequestId
: The ID of the request.
-
{
"ResponseContext": {
"RequestId": "0475ca1e-d0c5-441d-712a-da55a4175157"
}
}
Deleting a VPN Connection Using AWS CLI
Before you begin: Install and configure AWS CLI. For more information, see Installing and Configuring AWS CLI. |
To delete a VPN connection, use the delete-vpn-connection command following this syntax:
$ aws ec2 delete-vpn-connection \
--profile YOUR_PROFILE \
--vpn-connection-id vpn-c750ea06 \
--endpoint https://fcu.eu-west-2.outscale.com
This command contains the following attributes that you need to specify:
-
(optional)
profile
: The named profile you want to use, created when configuring AWS CLI. For more information, see Installing and Configuring AWS CLI. -
vpn-connection-id
: The ID of the VPN connection you want to delete. -
endpoint
: The endpoint corresponding to the Region you want to send the request to. For more information, see Installing and Configuring AWS CLI.
The specified VPN connection is deleted.
Deleted resources remain visible for 1 hour. |
Related Pages
Corresponding API Methods
AWS™ and Amazon Web Services™ are trademarks of Amazon Technologies, Inc or its affiliates in the United States and/or other countries.