openstack_blockstorage_qos_association_v3

Manages a V3 block storage Qos Association resource within OpenStack.

Example Usage

resource "openstack_blockstorage_qos_v3" "qos" {
  name = "%s"
  consumer = "front-end"
  specs = {
      read_iops_sec = "20000"
  }
}

resource "openstack_blockstorage_volume_type_v3" "volume_type" {
  name = "%s"
}

resource "openstack_blockstorage_qos_association_v3" "qos_association" {
  qos_id         = openstack_blockstorage_qos_v3.qos.id
  volume_type_id = openstack_blockstorage_volume_type_v3.volume_type.id
}

Argument Reference

The following arguments are supported:

Attributes Reference

The following attributes are exported:

Import

Qos association can be imported using the qos_id/volume_type_id, e.g.

$ terraform import openstack_blockstorage_qos_association_v3.qos_association 941793f0-0a34-4bc4-b72e-a6326ae58283/ea257959-eeb1-4c10-8d33-26f0409a755d