Skip to content

Commit

Permalink
Update routing protocols name to cloud-router-routing-protocols (#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
thogarty committed Jun 28, 2024
1 parent e50b20a commit b14dc4e
Show file tree
Hide file tree
Showing 12 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Fabric Routing Protocols Addition to Fabric Connection

This example shows how to leverage the [Fabric Routing Protocols Module](../../modules/routing-protocols/README.md)
This example shows how to leverage the [Fabric Cloud Router Routing Protocols Module](../../modules/cloud-router-routing-protocols/README.md)
to create Routing Protocols for a Fabric Connection.

It leverages the Equinix Terraform Provider, and the Fabric Routing Protocols
It leverages the Equinix Terraform Provider, and the Fabric Cloud Router Routing Protocols
Module to setup the connection based on the parameters you have provided to this example; or based on the pattern
you see used in this example it will allow you to create a more specific use case for your own needs.

Expand All @@ -30,7 +30,7 @@ you should clone the github repository for this module and run terraform within

```bash
git clone https://github.com/equinix/terraform-equinix-fabric.git
cd terraform-equinix-fabric/examples/routing-protocols
cd terraform-equinix-fabric/examples/cloud-router-routing-protocols
terraform init
terraform apply
```
Expand Down Expand Up @@ -153,7 +153,7 @@ provider "equinix" {
}
module "routing_protocols" {
source = "equinix/fabric/equinix//modules/routing-protocols"
source = "equinix/fabric/equinix//modules/cloud-router-routing-protocols"
connection_uuid = var.connection_uuid
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ provider "equinix" {
}

module "routing_protocols" {
source = "../../modules/routing-protocols"
source = "../../modules/cloud-router-routing-protocols"

connection_uuid = var.connection_uuid

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ module "cloud_router_port_connection" {

module "routing_protocols" {
depends_on = [module.cloud_router_port_connection]
source = "../../../modules/routing-protocols"
source = "../../../modules/cloud-router-routing-protocols"

connection_uuid = module.cloud_router_port_connection.primary_connection_id

Expand Down

0 comments on commit b14dc4e

Please sign in to comment.