openstack_aggregateopenstack_application_credentialopenstack_availability_zoneopenstack_compute_imageopenstack_domainopenstack_fipopenstack_groupopenstack_hypervisoropenstack_keypairopenstack_networkopenstack_portopenstack_projectopenstack_roleopenstack_role_assignmentopenstack_routeropenstack_security_groupopenstack_security_group_ruleopenstack_serveropenstack_server_groupopenstack_snapshotopenstack_subnetopenstack_useropenstack_volumeopenstack_volume_type
Table: openstack_volume_type
Volume types allow specifying attributes for volumes.
Examples
Basic volume type info
select id, name, description, extra_specs, is_public, public_accessfrom openstack_volume_type;
Volume type by ID
select id, name, description, extra_specs, is_public, public_accessfrom openstack_volume_typewhere id = '78d3a6e6-56cc-4835-adf6-e5f676e1a362';
All public volume types
select id, name, description, extra_specs, is_public, public_accessfrom openstack_volume_typewhere is_public = true;
Schema for openstack_volume_type
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form, e.g. connection_name. | |
description | text | Human-readable description for the volume type. | |
extra_specs | jsonb | Arbitrary key-value pairs defined by the user. | |
id | text | = | Unique identifier for the volume type. |
is_public | boolean | Whether the volume type is publicly visible. | |
name | text | Human-readable display name for the volume type. | |
public_access | boolean | Volume Type access public attribute. | |
qos_specs_id | text | Qos Spec ID. |