openstack_networking_quota_v2

Manages a V2 networking quota resource within OpenStack.

Example Usage

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

resource "openstack_networking_quota_v2" "quota_1" {
  project_id          = openstack_identity_project_v3.project_1.id
  floatingip          = 10
  network             = 4
  port                = 100
  rbac_policy         = 10
  router              = 4
  security_group      = 10
  security_group_rule = 100
  subnet              = 8
  subnetpool          = 2
}

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, e.g.

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