Skip to main content

equinix_fabric_route_aggregation_rules (Data Source)

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

Example Usage

data "equinix_fabric_route_aggregation_rules" "ra_rules" {
route_aggregation_id = "<route_aggregation_id>"
pagination = {
limit = 2
offset = 1
}
}

output "route_aggregation_rule_name" {
value = data.equinix_fabric_route_aggregation_rules.ra_rules.data.0.name
}

output "route_aggregation_rule_description" {
value = data.equinix_fabric_route_aggregation_rules.ra_rules.data.0.description
}

output "route_aggregation_rule_prefix" {
value = data.equinix_fabric_route_aggregation_rules.ra_rules.data.0.prefix
}

output "route_aggregation_rule_state" {
value = data.equinix_fabric_route_aggregation_rules.ra_rules.data.0.state
}

Schema

Required

  • route_aggregation_id (String) The uuid of the route aggregation rule this data source should retrieve

Optional

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

Read-Only

  • data (Attributes List) Returned list of route aggregation rule 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
  • offset (Number) Index of the first item returned in the response. The default is 0

Read-Only:

  • next (String) The URL relative to the next item in the response
  • previous (String) The URL relative to the previous item in the response
  • total (Number) The total number of route agrgegation rules available to the user making the request

Nested Schema for data

Optional:

  • description (String) Customer-provided route aggregation rule description

Read-Only:

  • change (Attributes) Current state of latest route aggregation rule change (see below for nested schema)
  • change_log (Attributes) Details of the last change on the stream resource (see below for nested schema)
  • href (String) Equinix auto generated URI to the route aggregation rule resource
  • name (String) Customer provided name of the route aggregation rule
  • prefix (String) Customer-provided route aggregation rule prefix
  • route_aggregation_id (String) UUID of the Route Aggregation to apply this Rule to
  • state (String) Value representing provisioning status for the route aggregation rule resource
  • type (String) Equinix defined Route Aggregation Type; BGP_IPv4_PREFIX_AGGREGATION, BGP_IPv6_PREFIX_AGGREGATION
  • uuid (String) Equinix-assigned unique id for the route aggregation rule resource

Nested Schema for data.change

Required:

  • type (String) Equinix defined Route Aggregation Change Type
  • uuid (String) Equinix-assigned unique id for a change

Read-Only:

  • href (String) Equinix auto generated URI to the route aggregation change

Nested Schema for data.change_log

Read-Only:

  • created_by (String) User name of creator of the stream resource
  • created_by_email (String) Email of creator of the stream resource
  • created_by_full_name (String) Legal name of creator of the stream resource
  • created_date_time (String) Creation time of the stream resource
  • deleted_by (String) User name of deleter of the stream resource
  • deleted_by_email (String) Email of deleter of the stream resource
  • deleted_by_full_name (String) Legal name of deleter of the stream resource
  • deleted_date_time (String) Deletion time of the stream resource
  • updated_by (String) User name of last updater of the stream resource
  • updated_by_email (String) Email of last updater of the stream resource
  • updated_by_full_name (String) Legal name of last updater of the stream resource
  • updated_date_time (String) Last update time of the stream resource
Was this page helpful?