Table: aws_vpc_vpn_connection - Query AWS VPC VPN Connection using SQL
The AWS VPC VPN Connection is a component within the Amazon Virtual Private Cloud (VPC) service that allows you to securely link your AWS environment with your on-premises networks. It utilizes industry-standard encryption protocols to provide high security and low latency for your network traffic. This VPN connection is a vital tool for hybrid cloud architectures, enabling seamless and secure communication between AWS and your data center.
Table Usage Guide
The aws_vpc_vpn_connection
table in Steampipe provides you with information about VPN connections within AWS Virtual Private Cloud (VPC). This table allows you, as a DevOps engineer, to query VPN connection-specific details, including the VPN connection ID, state, VPN gateway configurations, customer gateway configurations, and associated metadata. You can utilize this table to gather insights on VPN connections, such as connection states, associated VPN and customer gateways, static routes, and more. The schema outlines the various attributes of the VPN connection for you, including the VPN connection ID, creation time, VPN gateway ID, customer gateway ID, and associated tags.
Examples
Basic info
Explore the status and types of Virtual Private Network connections within your Amazon Web Services Virtual Private Cloud. This information is useful to understand the connectivity between your network and the AWS network, helping in maintaining secure and reliable connections.
select vpn_connection_id, state, type, vpn_gateway_id, customer_gateway_id, regionfrom aws_vpc_vpn_connection;
select vpn_connection_id, state, type, vpn_gateway_id, customer_gateway_id, regionfrom aws_vpc_vpn_connection;
Get option configurations for each VPN connection
Explore the configuration settings of each VPN connection to understand its specific features such as acceleration enablement, local and remote network details, and tunnel options. This can assist in optimizing network performance and security measures.
select vpn_connection_id, options -> 'EnableAcceleration' as enable_acceleration, options ->> 'LocalIpv4NetworkCidr' as local_ipv4_network_cidr, options ->> 'LocalIpv6NetworkCidr' as local_ipv6_network_cidr, options ->> 'RemoteIpv4NetworkCidr' as remote_ipv4_network_cidr, options ->> 'RemoteIpv6NetworkCidr' as remote_ipv6_network_cidr, options -> 'StaticRoutesOnly' as static_routes_only, options ->> 'TunnelInsideIpVersion' as tunnel_inside_ip_version, options ->> 'TunnelOptions' as tunnel_optionsfrom aws_vpc_vpn_connection;
select vpn_connection_id, json_extract(options, '$.EnableAcceleration') as enable_acceleration, json_extract(options, '$.LocalIpv4NetworkCidr') as local_ipv4_network_cidr, json_extract(options, '$.LocalIpv6NetworkCidr') as local_ipv6_network_cidr, json_extract(options, '$.RemoteIpv4NetworkCidr') as remote_ipv4_network_cidr, json_extract(options, '$.RemoteIpv6NetworkCidr') as remote_ipv6_network_cidr, json_extract(options, '$.StaticRoutesOnly') as static_routes_only, json_extract(options, '$.TunnelInsideIpVersion') as tunnel_inside_ip_version, json_extract(options, '$.TunnelOptions') as tunnel_optionsfrom aws_vpc_vpn_connection;
List VPN connections with tunnel status UP
This query is used to identify all active VPN connections within your AWS VPC. It's useful for maintaining a real-time overview of your network's connectivity status, helping to ensure secure and uninterrupted data transmission.
select vpn_connection_id, arn, t ->> 'Status' as statusfrom aws_vpc_vpn_connection, jsonb_array_elements(vgw_telemetry) as twhere t ->> 'Status' = 'UP';
select vpn_connection_id, arn, json_extract(t.value, '$.Status') as statusfrom aws_vpc_vpn_connection, json_each(vgw_telemetry) as twhere json_extract(t.value, '$.Status') = 'UP';
Control examples
Schema for aws_vpc_vpn_connection
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form. | |
account_id | text | =, !=, ~~, ~~*, !~~, !~~* | The AWS Account ID in which the resource is located. |
akas | jsonb | Array of globally unique identifier strings (also known as) for the resource. | |
arn | text | The Amazon Resource Name (ARN) specifying the VPN connection. | |
category | text | The category of the VPN connection. A value of VPN indicates an AWS VPN connection. | |
customer_gateway_configuration | text | = | The configuration information for the VPN connection's customer gateway. |
customer_gateway_id | text | = | The ID of the customer gateway at your end of the VPN connection. |
options | jsonb | The VPN connection options. | |
partition | text | The AWS partition in which the resource is located (aws, aws-cn, or aws-us-gov). | |
region | text | The AWS Region in which the resource is located. | |
routes | jsonb | The static routes associated with the VPN connection. | |
sp_connection_name | text | =, !=, ~~, ~~*, !~~, !~~* | Steampipe connection name. |
sp_ctx | jsonb | Steampipe context in JSON form. | |
state | text | = | The current state of the VPN connection. |
tags | jsonb | A map of tags for the resource. | |
tags_src | jsonb | A list of tags that are attached to VPN gateway. | |
title | text | Title of the resource. | |
transit_gateway_id | text | = | The ID of the transit gateway associated with the VPN connection. |
type | text | = | The type of VPN connection. |
vgw_telemetry | jsonb | Information about the VPN tunnel. | |
vpn_connection_id | text | = | The ID of the VPN connection. |
vpn_gateway_id | text | = | The ID of the virtual private gateway at the AWS side of the VPN connection. |
Export
This table is available as a standalone Exporter CLI. Steampipe exporters are stand-alone binaries that allow you to extract data using Steampipe plugins without a database.
You can download the tarball for your platform from the Releases page, but it is simplest to install them with the steampipe_export_installer.sh
script:
/bin/sh -c "$(curl -fsSL https://steampipe.io/install/export.sh)" -- aws
You can pass the configuration to the command with the --config
argument:
steampipe_export_aws --config '<your_config>' aws_vpc_vpn_connection