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

From wikieduonline
Jump to navigation Jump to search
Line 24: Line 24:
 
   description = "Machine type"
 
   description = "Machine type"
 
  }
 
  }
 
+
</pre>
  
 
== See also ==
 
== See also ==

Revision as of 11:37, 22 November 2022

 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-small]]"
   description = "Machine type"
 }

See also

Advertising: