generated from equinix-labs/terraform-equinix-template
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
check vpc exists just if required to create a vgw. Fix #2
- Loading branch information
Oscar Cobles
committed
Jul 26, 2022
1 parent
7775d73
commit c9adc91
Showing
6 changed files
with
21 additions
and
9 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 |
---|---|---|
|
@@ -22,23 +22,23 @@ variable "aws_account_id" { | |
} | ||
|
||
variable "aws_region" { | ||
type = string | ||
type = string | ||
description = <<EOF | ||
The region for the AWS Direct connect, e.g. 'eu-west-1'. NOTE that 'aws_region' and 'fabric_destination_metro_code' must correspond to same location, | ||
i.e Frankfurt will be: region = "eu-central-1" and fabric_destination_metro_code "FR" | ||
EOF | ||
default = "us-west-1" | ||
default = "us-west-1" | ||
} | ||
|
||
variable "metal_project_id" { | ||
type = string | ||
description = "ID of the project where the connection is scoped to, used to look up the project." | ||
description = "(Required) ID of the project where the connection is scoped to, used to look up the project." | ||
} | ||
|
||
variable "fabric_notification_users" { | ||
type = list(string) | ||
description = "A list of email addresses used for sending connection update notifications." | ||
default = ["[email protected]"] | ||
default = ["[email protected]"] | ||
} | ||
|
||
variable "fabric_destination_metro_code" { | ||
|
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