Skip to content

Bandwidth Resource API 3.8

lakshmi-enjeti edited this page Jan 12, 2018 · 3 revisions

The bandwidth resource allows for the creation and management bandwidth classes.

Example Usage

resource "brocadevtm_bandwidth" "example" {
  name = "example"
  maximum = 20000
  note = "Example bandwidth class"
  sharing = "connection"
}

Argument Reference

The following arguments are supported:

  • name - (required, string) - The unique name of the bandwidth class.
  • maximum - (optional, unsigned integer, default: 10000) - Maximum bandwidth to assign to this bandwidth class.
  • note - (optional, string, default: none) - A note to assign to this bandwidth class.
  • sharing - (optional, string, default: "cluster") - The scope of this bandwidth class. Valid choices are: "cluster", "connection" and "machine".