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

From wikieduonline
Jump to navigation Jump to search
Line 29: Line 29:
  
 
== See also ==
 
== See also ==
 +
* {{tf GKE}}
 
* {{GKE}}
 
* {{GKE}}
  
 
[[Category:GKE]]
 
[[Category:GKE]]

Revision as of 19:58, 4 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

See also

Advertising: