Skip to main content

equinix_fabric_route_aggregation (Resource)

Fabric V4 API compatible resource allows creation and management of Equinix Fabric Route Aggregation

Additional Documentation:

Example Usage

resource "equinix_fabric_route_aggregation" "new-ra" {
type = "BGP_IPv4_PREFIX_AGGREGATION"
name = "new-ra"
description = "Test aggregation"
project = {
project_id = "776847000642406"
}
}

Schema

Required

  • name (String) Customer provided name of the route aggregation
  • project (Attributes) Equinix Project attribute object (see below for nested schema)
  • type (String) Equinix defined Route Aggregation Type; BGP_IPv4_PREFIX_AGGREGATION, BGP_IPv6_PREFIX_AGGREGATION

Optional

  • description (String) Customer-provided route aggregation description
  • timeouts (Attributes) (see below for nested schema)

Read-Only

  • change (Attributes) Current state of latest Route Aggregation change (see below for nested schema)
  • change_log (Attributes) Details of the last change on the route aggregation resource (see below for nested schema)
  • connections_count (Number) Number of Connections attached to route aggregation
  • href (String) Equinix auto generated URI to the route aggregation resource
  • id (String) The unique identifier of the resource
  • rules_count (Number) Number of Rules attached to route aggregation
  • state (String) Value representing provisioning status for the route aggregation resource
  • uuid (String) Equinix-assigned unique id for the route aggregation resource

Nested Schema for project

Required:

  • project_id (String) Equinix Subscriber-assigned project ID

Nested Schema for timeouts

Optional:

  • create (String) A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
  • delete (String) A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
  • read (String) A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
  • update (String) A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).

Nested Schema for change

Required:

  • href (String) Equinix auto generated URI to the route aggregation change
  • type (String) Equinix defined Route Aggregation Change Type
  • uuid (String) Equinix-assigned unique id for a change

Nested Schema for change_log

Read-Only:

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