Skip to main content

equinix_fabric_network (Data Source)

Fabric V4 API compatible data resource that allow user to fetch Fabric Network for a given UUID

Additional documentation:

Example Usage

data "equinix_fabric_network" "network_data_name" {
uuid = "<uuid_of_network>"
}

output "id" {
value = data.equinix_fabric_network.network_data_name.id
}

output "name" {
value = data.equinix_fabric_network.network_data_name.name
}

output "scope" {
value = data.equinix_fabric_network.network_data_name.scope
}

output "type" {
value = data.equinix_fabric_network.network_data_name.type
}

output "region" {
value = [for location in data.equinix_fabric_network.network_data_name.location: location.region]
}

Schema

Required

  • uuid (String) Equinix-assigned network identifier

Read-Only

  • change (Set of Object) Information on asset change operation (see below for nested schema)
  • change_log (Set of Object) A permanent record of asset creation, modification, or deletion (see below for nested schema)
  • connections_count (Number) Number of connections associated with this network
  • href (String) Fabric Network URI information
  • id (String) The ID of this resource.
  • location (Set of Object) Fabric Network location (see below for nested schema)
  • name (String) Fabric Network name. An alpha-numeric 24 characters string which can include only hyphens and underscores
  • notifications (List of Object) Preferences for notifications on Fabric Network configuration or status changes (see below for nested schema)
  • operation (Set of Object) Network operation information that is associated with this Fabric Network (see below for nested schema)
  • project (Set of Object) Fabric Network project (see below for nested schema)
  • scope (String) Fabric Network scope. Valid values: [REGIONAL GLOBAL LOCAL]. Note: When scope is REGIONAL, the location.region field is required.
  • state (String) Fabric Network overall state
  • type (String) Supported Network types - EVPLAN, EPLAN, IPWAN, EVPTREE, EPTREE

Nested Schema for change

Read-Only:

  • href (String)
  • type (String)
  • uuid (String)

Nested Schema for change_log

Read-Only:

  • created_by (String)
  • created_by_email (String)
  • created_by_full_name (String)
  • created_date_time (String)
  • deleted_by (String)
  • deleted_by_email (String)
  • deleted_by_full_name (String)
  • deleted_date_time (String)
  • updated_by (String)
  • updated_by_email (String)
  • updated_by_full_name (String)
  • updated_date_time (String)

Nested Schema for location

Read-Only:

  • ibx (String)
  • metro_code (String)
  • metro_name (String)
  • region (String)

Nested Schema for notifications

Read-Only:

  • emails (List of String)
  • send_interval (String)
  • type (String)

Nested Schema for operation

Read-Only:

  • equinix_status (String)

Nested Schema for project

Read-Only:

  • project_id (String)
Was this page helpful?