-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgcp_variables.tf
78 lines (62 loc) · 1.79 KB
/
gcp_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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
variable "gcp_credentials_path" {
description = "File path to the downloaded Google Cloud Platform credentials"
}
variable "gcp_project" {
description = "The ID of the GCP project to create compute instances"
}
variable "gcp_region" {
description = "The GCP region to operate under"
default = "us-east1"
}
variable "gcp_zone" {
description = "The GCP zone to operate under"
default = "us-east1-d"
}
variable "gcp_clustername" {
description = "Name of the cluster"
default = "hawq"
}
variable "gcp_cluster_network" {
default = "10.0.0.0/24"
}
variable "gcp_image" {
description = "The image from which to initialize GCP compute instances"
default = "centos-6"
}
variable "gcp_publickey_path" {
description = "Path to file containing public key"
default = "~/.ssh/gcloud_id_rsa.pub"
}
variable "gcp_privatekey_path" {
description = "Path to file containing private key"
default = "~/.ssh/gcloud_id_rsa"
}
variable "ambari_machine_type" {
description = "GCP compute instance type of Ambari node"
default = "n1-standard-4"
}
variable "cluster_machine_type" {
description = "GCP compute instance type of cluster nodes"
default = "n1-standard-8"
}
variable "cluster_size" {
description = "Number of cluster nodes"
default = "6"
}
variable "pivotal_token" {
description = "Pivotal Network token"
}
variable "hawq_password" {
description = "Password for HAWQ user (gpadmin)"
}
variable "hdp_version" {
description = "Version of Hortonworks Data Platform (HDP) to be installed"
default = "2.4"
}
variable "hdp_services" {
description = "Hortonworks Data Platform (HDP) services to be installed"
default = "HDFS MAPREDUCE2 YARN ZOOKEEPER PIG HIVE TEZ AMBARI_METRICS HAWQ PXF HBASE SPARK"
}
variable "dpod_dir" {
description = "Directory to hold auto provisioning scripts"
}