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, projectfrom scaleway_vpc_private_network;
select name, id, created_at, zone, projectfrom scaleway_vpc_private_network;
Schema for scaleway_vpc_private_network
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form, e.g. connection_name. | |
created_at | timestamp with time zone | The time when the private network was created. | |
id | text | = | An unique identifier of the private network. |
name | text | = | The user-defined name of the private network. |
organization | text | The ID of the organization where the private network resides. | |
project | text | The ID of the project where the private network resides. | |
tags | jsonb | A list of tags associated with the private network. | |
title | text | Title of the resource. | |
updated_at | timestamp with time zone | The time when the private network was last updated. | |
zone | text | = | 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