Difference between revisions of "Deploy GKE cluster using Terraform: variables.tf"
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
<pre> | <pre> | ||
− | variable "gke_username" { | + | 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 == | == See also == |
Revision as of 07:29, 31 October 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
* GKE, GKE Autopilot,gcloud container, gke-gcloud-auth-plugin
, GKE release channels, GKE Ingress, GCP Node logs, GCP Node logs severity Error, GKE roles, Provide access to GKE cluster, Deploy GKE cluster using Terraform,cluster_autoscaling, addons_config, GKE Node Pool
, node auto-provisioning
Advertising: