ovh_billovh_bill_detailovh_cloud_ai_appovh_cloud_ai_jobovh_cloud_ai_notebookovh_cloud_data_jobovh_cloud_databaseovh_cloud_flavorovh_cloud_imageovh_cloud_instanceovh_cloud_postgresovh_cloud_projectovh_cloud_regionovh_cloud_ssh_keyovh_cloud_storage_s3ovh_cloud_storage_swiftovh_cloud_volumeovh_cloud_volume_snapshotovh_refundovh_refund_detail
Table: ovh_cloud_instance
An instance is a virtual server in the OVH cloud.
The ovh_cloud_instance
table can be used to query information about instances and you must specify which cloud project in the where or join clause (where project_id=
, join ovh_cloud_project on id=
).
Examples
List instances of a cloud project
select id, namefrom ovh_cloud_instancewhere project_id = '27c5a6d3dfez87893jfd88fdsfmvnqb8'
List all instances of all cloud projects
select ci.id, ci.namefrom ovh_cloud_instance ci join ovh_cloud_project cp on ci.project_id = cp.id
Schema for ovh_cloud_instance
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form. | |
created_at | timestamp with time zone | Instance creation date. | |
current_month_outgoing_traffic | bigint | Instance outgoing network traffic for the current month (in bytes). | |
flavor_id | text | Instance flavor ID. | |
id | text | = | Instance ID. |
image_id | text | Instance image ID. | |
name | text | Instance name. | |
plan_code | text | Order plan code. | |
project_id | text | = | Project ID. |
region | text | Region of the instance. | |
sp_connection_name | text | =, !=, ~~, ~~*, !~~, !~~* | Steampipe connection name. |
sp_ctx | jsonb | Steampipe context in JSON form. | |
ssh_key_id | text | Instance ssh key ID. | |
status | text | Instance status. |