generated from equinix-labs/terraform-equinix-template
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: ocobleseqx <[email protected]>
- Loading branch information
ocobleseqx
committed
Jan 16, 2024
1 parent
f4e6d52
commit b4388ed
Showing
10 changed files
with
90 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,8 +3,10 @@ provider "equinix" { | |
client_secret = "someSecret" | ||
} | ||
|
||
module "equinix-fabric-connection" { | ||
source = "equinix-labs/fabric-connection/equinix" | ||
module "equinix_fabric_connection" { | ||
# TEMPLATE: Replace this path with the Git repo path or Terraform Registry path | ||
# source = "equinix-labs/fabric-connection/equinix" | ||
source = "../.." | ||
|
||
# required variables | ||
notification_users = ["[email protected]"] | ||
|
@@ -15,15 +17,3 @@ module "equinix-fabric-connection" { | |
seller_authorization_key = "AWS-account-ID" | ||
network_edge_id = "NE-device-Uuid" | ||
} | ||
|
||
output "fabric_connection_id" { | ||
value = module.equinix-fabric-connection.primary_connection.id | ||
} | ||
|
||
output "fabric_connection_status" { | ||
value = module.equinix-fabric-connection.primary_connection.status | ||
} | ||
|
||
output "fabric_connection_provider_status" { | ||
value = module.equinix-fabric-connection.primary_connection.provider_status | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
output "fabric_connection_id" { | ||
description = "Primary connection id." | ||
value = module.equinix_fabric_connection.primary_connection.id | ||
} | ||
|
||
output "fabric_connection_status" { | ||
description = "Primary connection equinix status." | ||
value = module.equinix_fabric_connection.primary_connection.status | ||
} | ||
|
||
output "fabric_connection_provider_status" { | ||
description = "Primary connection provider status." | ||
value = module.equinix_fabric_connection.primary_connection.provider_status | ||
} |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
terraform { | ||
terraform { | ||
required_version = ">= 0.13" | ||
|
||
required_providers { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters