generated from equinix-labs/terraform-equinix-template
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from equinix-labs/fix-pre-commit
Fix pre commit
- Loading branch information
Showing
4 changed files
with
19 additions
and
7 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
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,15 +1,21 @@ | ||
variable "metal_auth_token" { | ||
type = string | ||
description = "Your Equinix Metal API Token" | ||
} | ||
|
||
variable "metal_vlan_description" { | ||
default = "ntnx-demo" | ||
type = string | ||
default = "ntnx-demo" | ||
description = "Description added to VLAN created for your Nutanix Cluster" | ||
} | ||
|
||
variable "metal_project_name" { | ||
type = string | ||
description = "The name of the Metal project in which to deploy the cluster. If create_project is false the project will be looked up by name." | ||
} | ||
|
||
variable "create_project" { | ||
default = true | ||
type = bool | ||
default = true | ||
description = "(Optional) to use an existing project matching `metal_project_name`, set this to false" | ||
} |