openstack_networking_qos_bandwidth_limit_rule_v2

Manages a V2 Neutron QoS bandwidth limit rule resource within OpenStack.

Example Usage

Create a QoS Policy with some bandwidth limit rule

resource "openstack_networking_qos_policy_v2" "qos_policy_1" {
  name        = "qos_policy_1"
  description = "bw_limit"
}

resource "openstack_networking_qos_bandwidth_limit_rule_v2" "bw_limit_rule_1" {
  qos_policy_id  = openstack_networking_qos_policy_v2.qos_policy_1.id
  max_kbps       = 3000
  max_burst_kbps = 300
  direction      = "egress"
}

Argument Reference

The following arguments are supported:

Attributes Reference

The following attributes are exported:

Import

QoS bandwidth limit rules can be imported using the qos_policy_id/bandwidth_limit_rule format, e.g.

$ terraform import openstack_networking_qos_bandwidth_limit_rule_v2.bw_limit_rule_1 d6ae28ce-fcb5-4180-aa62-d260a27e09ae/46dfb556-b92f-48ce-94c5-9a9e2140de94