turbot/scaleway
steampipe plugin install scaleway

Table: scaleway_vpc_private_network - Query Scaleway VPC Private Networks using SQL

A Scaleway VPC Private Network is a resource within Scaleway that allows users to create isolated network environments. These networks are used to interconnect instances and other resources, providing a secure and efficient way to manage network traffic within a Scaleway environment. With this resource, users can control IP addressing, subnetting, and routing to provide secure, private communication between instances.

Table Usage Guide

The scaleway_vpc_private_network table provides insights into private networks within Scaleway's Virtual Private Cloud (VPC). As a network engineer, you can explore network-specific details through this table, including network configuration, associated instances, and related metadata. Use it to uncover information about private networks, such as their IP range, default configuration, and associated instances.

Examples

Basic info

Explore which private networks have been created within your Scaleway VPC. This is useful for keeping track of your network configurations and identifying any potential issues or areas for improvement.

select
name,
id,
created_at,
zone,
project
from
scaleway_vpc_private_network;
select
name,
id,
created_at,
zone,
project
from
scaleway_vpc_private_network;

Schema for scaleway_vpc_private_network

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
created_attimestamp with time zoneThe time when the private network was created.
idtext=An unique identifier of the private network.
nametext=The user-defined name of the private network.
organizationtextThe ID of the organization where the private network resides.
projecttextThe ID of the project where the private network resides.
tagsjsonbA list of tags associated with the private network.
titletextTitle of the resource.
updated_attimestamp with time zoneThe time when the private network was last updated.
zonetext=Specifies the zone where the private network resides.

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

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

steampipe_export_scaleway --config '<your_config>' scaleway_vpc_private_network