turbot/alicloud
steampipe plugin install alicloud

Table: alicloud_vpc_vpn_customer_gateway

A customer gateway device is a physical or software appliance that you own or manage in your on-premises network (on your side of a Site-to-Site VPN connection). You or your network administrator must configure the device to work with the VPN connection.

Examples

Basic info

Explore the details of your VPN customer gateway in Alibaba Cloud's VPC service. This query can be used to understand when and why each gateway was created, aiding in resource management and auditing processes.

select
name,
customer_gateway_id,
description,
create_time
from
alicloud_vpc_vpn_customer_gateway;
select
name,
customer_gateway_id,
description,
create_time
from
alicloud_vpc_vpn_customer_gateway;

Get the IP address of each customer gateway

Explore which customer gateways are associated with specific IP addresses to better manage network connections and troubleshoot potential issues. This query is beneficial for maintaining secure and efficient connectivity within your virtual private cloud (VPC).

select
name,
customer_gateway_id,
ip_address
from
alicloud_vpc_vpn_customer_gateway;
select
name,
customer_gateway_id,
ip_address
from
alicloud_vpc_vpn_customer_gateway;

Schema for alicloud_vpc_vpn_customer_gateway

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
account_idtextThe Alicloud Account ID in which the resource is located.
akasjsonbArray of globally unique identifier strings (also known as) for the resource.
asnbigintSpecifies the ASN of the customer gateway.
create_timetimestamp with time zoneThe time when the customer gateway was created.
customer_gateway_idtext=The ID of the customer gateway.
descriptiontextThe description of the customer gateway.
ip_addressinetThe IP address of the customer gateway.
nametextThe name of the customer gateway.
regiontextThe Alicloud region in which the resource is located.
titletextTitle of the resource.

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)" -- alicloud

You can pass the configuration to the command with the --config argument:

steampipe_export_alicloud --config '<your_config>' alicloud_vpc_vpn_customer_gateway