steampipe plugin install francois2metz/ovh

Table: ovh_cloud_image

An image is a pre-installed, ready-to-use operating system.

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

Examples

List images of a cloud project

select
id,
name,
type
from
ovh_cloud_image
where
project_id = '27c5a6d3dfez87893jfd88fdsfmvnqb8'

List public linux images of a cloud project

select
id,
name,
type
from
ovh_cloud_image
where
project_id = '27c5a6d3dfez87893jfd88fdsfmvnqb8'
and visibility = 'public'
and type = 'linux'

Schema for ovh_cloud_image

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form.
created_attimestamp with time zoneImage creation date.
flavor_typetextImage usable only for this type of flavor if not null.
idtext=Image ID.
min_diskbigintMinimum disks required to use image.
min_rambigintMinimum RAM required to use image.
nametextImage name.
plan_codetextOrder plan code.
project_idtext=Project ID.
regiontextImage region.
sizedouble precisionImage size (in GiB).
sp_connection_nametext=, !=, ~~, ~~*, !~~, !~~*Steampipe connection name.
sp_ctxjsonbSteampipe context in JSON form.
statustextImage status.
tagsjsonbTags about the image.
typetextImage type.
usertextUser to connect with.
visibilitytextImage visibility.