Skip to content

Commit

Permalink
description followed by default values in variable.tf
Browse files Browse the repository at this point in the history
  • Loading branch information
devenkulkarni committed Aug 26, 2024
1 parent 28e7ecd commit 70a9866
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions variables.tf
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
variable "harvester_version" {
description = "Harvester version to be installed"
default = "v1.1.2"
description = "Harvester version to be installed"
}

variable "node_count" {
description = "Number of nodes to deploy Harvester cluster"
default = "3"
description = "Number of nodes to deploy Harvester cluster"
}

variable "project_name" {
description = "Name of the Equinix metal Project"
default = ""
description = "Name of the Equinix metal project"
}

variable "metal_create_project" {
Expand All @@ -20,28 +20,28 @@ variable "metal_create_project" {
}

variable "plan" {
description = "Size of the servers to be deployed on Equinix metal"
default = "c3.small.x86"
description = "Size of the servers to be deployed on Equinix metal"
}

variable "billing_cylce" {
description = "Equinix metal billing/invoice generation schedule"
default = "hourly"
description = "Equinix metal billing/invoice generation schedule"
}

variable "metro" {
description = "Equinix metal data center location. Examples: SG,SV,AM,MA,Ny,LA,etc."
default = "SG"
description = "Equinix metal data center location. Examples: SG,SV,AM,MA,Ny,LA,etc."
}

variable "ipxe_script" {
description = "URL for booting the servers with IPXE"
default = "https://raw.githubusercontent.com/rancherlabs/harvester-equinix-terraform/main/ipxe/ipxe-"
description = "URL for booting the servers with IPXE"
}

variable "hostname_prefix" {
description = "Prefix for resources to be created in equinix metal"
default = "harvester-pxe"
description = "Prefix for resources to be created in equinix metal"
}

variable "spot_instance" {
Expand Down Expand Up @@ -85,12 +85,12 @@ variable "rancher_insecure" {
}
variable "api_key" {
type = string
description = "Equinix Metal authentication token"
default = ""
description = "Equinix Metal authentication token"
}

variable "use_cheapest_metro" {
description = "A boolean variable to control cheapest metro selection"
type = bool
default = true
description = "A boolean variable to control cheapest metro selection"
}

0 comments on commit 70a9866

Please sign in to comment.