-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
60 lines (49 loc) · 1.09 KB
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
variable "gcp_credentials" {
type = string
description = "Location of service account json for GCP"
}
variable "gcp_project_id" {
type = string
description = "GCP Project Id"
}
variable "gcp_project_name" {
type = string
default = "default"
description = "GCP Project Id"
}
variable "gcp_region" {
type = string
description = "GCP Region"
}
/*variable "gcp_cluster_name" {
type = string
description = "GCP Cluster Name"
}*/
/*variable "gke_zones" {
type = list(string)
description = "GKE Zone Names"
}*/
/*variable "gke_network" {
type = string
description = "GKE Network Name"
}*/
/*variable "gke_subnetwork" {
type = string
description = "GKE Subnetwork Name"
}*/
/*variable "gke_service_account" {
type = string
description = "GKE Service Account Name"
}*/
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"
}