Skip to main content

equinix_fabric_connection_route_aggregations (Data Source)

Fabric V4 API compatible data resource that allow user to fetch Equinix Fabric Connection Route Aggregations with pagination details Additional Documentation:

Example Usage

data "equinix_fabric_connection_route_aggregations" "attached_policies" {
connection_id = "connection_id"
}

output "connection_first_route_Aggregation_uuid" {
value = data.equinix_fabric_connection_route_aggregations.attached_policies.data.0.uuid
}

output "connection_first_route_aggregation_type" {
value = data.equinix_fabric_connection_route_aggregations.attached_policies.data.0.type
}

output "connection_first_route_aggregation_attachment_status" {
value = data.equinix_fabric_connection_route_aggregations.attached_policies.data.0.attachment_status
}

Schema

Required

  • connection_id (String) The uuid of the connection this data source should retrieve

Optional

  • pagination (Attributes) Pagination details for the returned connection route aggregations list (see below for nested schema)

Read-Only

  • data (Attributes List) Returned list of connection route aggregation objects (see below for nested schema)
  • id (String) The unique identifier of the resource

Nested Schema for pagination

Optional:

  • limit (Number) Maximum number of search results returned per page. Number must be between 1 and 100, and the default is 20
  • next (String) The URL relative to the next item in the response
  • offset (Number) Index of the first item returned in the response. The default is 0
  • previous (String) The URL relative to the previous item in the response
  • total (Number) The total number of connection route aggregations available to the user making the request

Nested Schema for data

Required:

  • connection_id (String) UUID of the Connection to attach this Route Aggregation to
  • route_aggregation_id (String) UUID of the Route Aggregation to attach this Connection to

Read-Only:

  • attachment_status (String) Status of the Route Aggregation Policy attachment lifecycle
  • href (String) URI to the attached Route Aggregation Policy on the Connection
  • type (String) Route Aggregation Type. One of ["BGP_IPv4_PREFIX_AGGREGATION"]
  • uuid (String) Equinix Assigned ID for Route Aggregation Policy
Was this page helpful?