turbot/scaleway
steampipe plugin install scaleway

Table: scaleway_account_project

A Project is a grouping of Scaleway resources. Each Scaleway Organization comes with a default Project, and you can create new Projects if necessary. Projects are cross-region, meaning resources located in different regions can be grouped in one single Project. When grouping resources into different Projects, you can use IAM to define custom access rights for each Project.

This table requires an Organization ID to be configured in the scaleway.spc file.

Examples

Basic info

select
name,
id,
created_at,
organization_id
from
scaleway_account_project;

Schema for scaleway_account_project

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
created_attimestamp with time zoneThe time when the project was created.
descriptiontextDescription of the project.
idtext=The ID of the project.
nametext=Name of the project.
organization_idtextOrganization ID of the project.
updated_attimestamp with time zoneThe time when the project was updated.

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_account_project