Skip to content

Latest commit

 

History

History
53 lines (41 loc) · 1.4 KB

interface.md

File metadata and controls

53 lines (41 loc) · 1.4 KB
page_title subcategory description
f5os_interface Resource - terraform-provider-f5os
Resource to Manage network interfaces on F5OS systems like VELOS chassis partitions or rSeries platforms

f5os_interface (Resource)

Resource to Manage network interfaces on F5OS systems like VELOS chassis partitions or rSeries platforms

Example Usage

resource "f5os_interface" "test_interface" {
  enabled     = true
  name        = "1.0"
  native_vlan = 5
  trunk_vlans = [
    1,
    2,
    3
  ]
}

Schema

Optional

  • enabled (Boolean) Enables or disables interface.
  • name (String) Name of the interface to configure. For VELOS partitions blade/port format is required e.g. 1/1.0
  • native_vlan (Number) Configures the VLAN ID to associate with the interface. The native_vlan parameter is used for untagged traffic.
  • trunk_vlans (Set of Number) Configures multiple VLAN IDs to associate with the interface. The trunk_vlans parameter is used for tagged traffic

Read-Only

  • id (String) Unique identifier for Interface resource.
  • status (String) Operational state of the interface.

Import

Import is supported using the following syntax:

# Interface can be imported by specifying the Interface name
terraform import f5os_interface.test-import 1.0