---
title: "openstack_blockstorage_volume_v3"
description: ""
sidebar_position: 1
---

# openstack\_blockstorage\_volume\_v3

:::info

Эта инструкция — копия официальной документации OpenStack Terraform-провайдера в [Terraform Registry](https://registry.terraform.io/providers/terraform-provider-openstack/openstack/latest/docs).

:::

Use this data source to get information about an existing volume.

## Example Usage \{#example-usage}

```hcl
data "openstack_blockstorage_volume_v3" "volume_1" {
  name = "volume_1"
}
```

## Argument Reference \{#argument-reference}

* `region` - (Optional) The region in which to obtain the V3 Block Storage
  client. If omitted, the `region` argument of the provider is used.

* `name` - (Optional) The name of the volume.

* `status` - (Optional) The status of the volume.

* `metadata` - (Optional) Metadata key/value pairs associated with the volume.

## Attributes Reference \{#attributes-reference}

`id` is set to the ID of the found volume. In addition, the following attributes
are exported:

* `region` - See Argument Reference above.
* `name` - See Argument Reference above.
* `status` - See Argument Reference above.
* `metadata` - See Argument Reference above.
* `volume_type` - The type of the volume.
* `bootable` - Indicates if the volume is bootable.
* `size` - The size of the volume in GBs.
* `source_volume_id` - The ID of the volume from which the current volume was created.
* `multiattach` - Indicates if the volume can be attached to more then one server.
* `host` - The OpenStack host on which the volume is located.
