openstack_lb_quota_v2

Manages a V2 load balancer quota resource within OpenStack.

Example Usage

resource "openstack_identity_project_v3" "project_1" {
  name = "project_1"
}

resource "openstack_lb_quota_v2" "quota_1" {
  project_id     = openstack_identity_project_v3.project_1.id
  loadbalancer   = 6
  listener       = 7
  member         = 8
  pool           = 9
  health_monitor = 10
  l7_policy      = 11
  l7_rule        = 12
}

Argument Reference

The following arguments are supported:

Attributes Reference

The following attributes are exported:

Import

Quotas can be imported using the project_id/region_name, where region_name is the one defined is the Openstack credentials that are in use. E.g.

$ terraform import openstack_lb_quota_v2.quota_1 2a0f2240-c5e6-41de-896d-e80d97428d6b/region_1