Difference between revisions of "Deploy GKE cluster using Terraform: variables.tf"

From wikieduonline
Jump to navigation Jump to search
 
(7 intermediate revisions by the same user not shown)
Line 1: Line 1:
<pre>
 
variable "gke_username" {
 
  default    = ""
 
  description = "gke username"
 
}
 
  
variable "gke_password" {
+
variable "gke_username" {
  default    = ""
+
  default    = ""
  description = "gke password"
+
  description = "gke username"
}
+
}
 +
 +
variable "gke_password" {
 +
  default    = ""
 +
  description = "gke password"
 +
}
 +
 +
variable "gke_num_nodes" {
 +
  default    = 2
 +
  description = "number of gke nodes"
 +
}
 +
 +
variable "mylocation" {
 +
  default    = ""
 +
  description = "Cluster location"
 +
}
 +
 +
variable "my_machine_type" {
 +
  default    = "[[g1-medium]]"
 +
  description = "Machine type"
 +
}
  
variable "gke_num_nodes" {
+
== Related ==
  default    = 2
+
* [[Deploy GKE cluster using Terraform]], <code>[[gke.tf]]</code>
  description = "number of gke nodes"
 
}
 
 
 
variable "mylocation" {
 
  default    = ""
 
  description = "Cluster location"
 
}
 
 
 
variable "my_machine_type" {
 
  default    = "g1-small"
 
  description = "Machine type"
 
}
 
</pre>
 
  
 
== See also ==
 
== See also ==
 +
* {{tf GKE}}
 
* {{GKE}}
 
* {{GKE}}
  
 
[[Category:GKE]]
 
[[Category:GKE]]

Latest revision as of 16:59, 7 December 2023

variable "gke_username" {
  default     = ""
  description = "gke username"
}

variable "gke_password" {
  default     = ""
  description = "gke password"
}

variable "gke_num_nodes" {
  default     = 2
  description = "number of gke nodes"
} 

variable "mylocation" {
  default     = ""
  description = "Cluster location"
}

variable "my_machine_type" {
  default     = "g1-medium"
  description = "Machine type"
}

Related[edit]

See also[edit]

Advertising: