Skip to main content

equinix_network_device_type (Data Source)

Use this data source to get Equinix Network Edge device type details. For further details, check supported Network Edge Vendors and Devices.

Example Usage

# Retrieve device type details of a Cisco router
# Device type has to be available in DC and SV metros
data "equinix_network_device_type" "ciscoRouter" {
category = "Router"
vendor = "Cisco"
metro_codes = ["DC", "SV"]
}

Argument Reference

The following arguments are supported:

  • name - (Optional) Device type name.
  • vendor - (Optional) Device type vendor i.e. Cisco, Juniper Networks, VERSA Networks.
  • category - (Optional) Device type category. One of: Router, Firewall, SDWAN.
  • metro_codes - (Optional) List of metro codes where device type has to be available

Attributes Reference

In addition to all arguments above, the following attributes are exported:

  • code - Device type short code, unique identifier of a network device type
  • description - Device type textual description
Was this page helpful?