steampipe plugin install francois2metz/ovh

Table: ovh_cloud_region

Regions available for a cloud project.

The ovh_cloud_region table can be used to query information about regions and you must specify which cloud project in the where or join clause (where project_id=, join ovh_cloud_project on id=).

Examples

List regions of a cloud project

select
name,
type,
status
from
ovh_cloud_region
where
project_id = '27c5a6d3dfez87893jfd88fdsfmvnqb8'

List regions not UP

select
name
from
ovh_cloud_postgres
where
project_id = '27c5a6d3dfez87893jfd88fdsfmvnqb8'
and status != 'UP'

Get specific region

select
name,
type,
status
from
ovh_cloud_region
where
project_id = '27c5a6d3dfez87893jfd88fdsfmvnqb8'
and name = 'GRA'

Schema for ovh_cloud_region

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form.
continent_codetextRegion continent code.
datacenter_locationtextLocation of the datacenter where the region is.
ip_countriesjsonbAllowed countries for failover ip.
nametext=Name of the region.
project_idtext=Project ID.
servicesjsonbDetails about components status.
sp_connection_nametext=, !=, ~~, ~~*, !~~, !~~*Steampipe connection name.
sp_ctxjsonbSteampipe context in JSON form.
statustextOpenStack region status.
typetextRegion type.