Skip to content

Commit

Permalink
update equinix-fabric-connection module version
Browse files Browse the repository at this point in the history
  • Loading branch information
ocobles committed Apr 18, 2022
1 parent bb475c3 commit aa1bab2
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# TEMPLATE: add your username after terraform
# TEMPLATE: * equinix-labs/terraform myusername
* @equinix-labs/terraform ocobleseqx
* @ocobleseqx
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ See <https://registry.terraform.io/modules/equinix-labs/fabric-connection-gcp/eq
| Name | Type |
|------|------|
| [random_string.this](https://registry.terraform.io/providers/hashicorp/random/latest/docs/resources/string) | resource |
| [equinix-fabric-connection](https://registry.terraform.io/modules/equinix-labs/fabric-connection/equinix/latest?tab=inputs) | module |
| [equinix-fabric-connection](https://registry.terraform.io/modules/equinix-labs/fabric-connection/equinix/latest) | module |
| [equinix_network_bgp.this](https://registry.terraform.io/providers/equinix/equinix/latest/docs/resources/equinix_network_bgp) | resource |
| [google_compute_interconnect_attachment.this](https://registry.terraform.io/providers/hashicorp/google/latest/docs/resources/compute_interconnect_attachment) | resource |
| [google_compute_router.this](https://registry.terraform.io/providers/hashicorp/google/latest/docs/resources/compute_router) | resource |
Expand All @@ -90,5 +90,5 @@ See <https://registry.terraform.io/modules/equinix-labs/fabric-connection-gcp/eq

### Examples

- [Fabric Port connection example](https://registry.terraform.io/modules/equinix-labs/fabric-connection-gcp/equinix/latest/examples/fabric-port-connection/)
- [Fabric Port connection](https://registry.terraform.io/modules/equinix-labs/fabric-connection-gcp/equinix/latest/examples/fabric-port-connection/)
- [Network Edge device connection](https://registry.terraform.io/modules/equinix-labs/fabric-connection-gcp/equinix/latest/examples/network-edge-device-connection/)
12 changes: 6 additions & 6 deletions examples/fabric-port-connection/README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Fabric Port Connection Example

This example demonstrates usage of the Equinix Connection module to establish a non-redundant Equinix Fabric L2 Connection from a Equinix Fabric port to Google Cloud Interconnect. It will:
This example demonstrates usage of the Equinix Connection GCP module to establish a non-redundant Equinix Fabric L2 Connection from a Equinix Fabric port to Google Cloud Interconnect. It will:

- Use VPC 'default'
- Use project specified in provider
- Create a Google Cloud Router
- Create a Google Cloud Interconnect/VLAN Attachment
- Create an Equinix Fabric l2 connection with minimun available bandwidth for Google Cloud service profile
- Use VPC 'default'.
- Use project specified in provider.
- Create a Google Cloud Router.
- Create a Google Cloud Interconnect/VLAN Attachment.
- Create an Equinix Fabric l2 connection with minimun available bandwidth for Google Cloud service profile.

## Usage

Expand Down
16 changes: 8 additions & 8 deletions examples/network-edge-device-connection/README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# Network Edge Device Connection Example

This example demonstrates usage of the Equinix Connection module to establish a non-redundant Equinix Fabric L2 Connection from a Equinix Network Edge device to Google Cloud Interconnect. It will:

- Use 'default' VPC
- Use the `project` specified in provider
- Create a Google Cloud Router
- Create a Google Cloud Interconnect/VLAN Attachment
- Create Equinix Fabric l2 connection with 200 Mbps bandwidth
- Configure BGP session between the GCP cloud router and your Network Edge device
This example demonstrates usage of the Equinix Connection GCP module to establish a non-redundant Equinix Fabric L2 Connection from a Equinix Network Edge device to Google Cloud Interconnect. It will:

- Use 'default' VPC.
- Use the `project` specified in provider.
- Create a Google Cloud Router.
- Create a Google Cloud Interconnect/VLAN Attachment.
- Create Equinix Fabric l2 connection with 200 Mbps bandwidth.
- Configure BGP session between the GCP cloud router and your Network Edge device.

## Usage

Expand Down
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ resource "google_compute_interconnect_attachment" "this" {

module "equinix-fabric-connection" {
source = "equinix-labs/fabric-connection/equinix"
version = "0.1.0"
version = "0.1.1"

# required variables
notification_users = var.fabric_notification_users
Expand Down
4 changes: 2 additions & 2 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -188,8 +188,8 @@ variable "platform" {
variable "gcp_configure_bgp" {
type = bool
description = <<EOF
To complete configuration of bgp peering in Google platform. If 'network_edge_configure_bgp' is true
BGP will be configured as well in gcp even if 'gcp_configure_bgp' is false.
To complete configuration of bgp peering in Google platform. If 'network_edge_configure_bgp' is set to 'true',
then BGP will be configured as well in gcp even if 'gcp_configure_bgp' is set to 'false'.
NOTE: Configuration of the bgp customer ASN in google side is not directly supported with current google terraform
provider (v3.72.0). As a workaround this module take advantage of 'terraform-google-gcloud' module which allows use
Expand Down

0 comments on commit aa1bab2

Please sign in to comment.