-
Notifications
You must be signed in to change notification settings - Fork 3
/
variables.tf
58 lines (45 loc) · 1.04 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
variable "add_seeds" {
description = "add seeds from other region"
default = []
}
variable "project_name" {
description = "project name"
default = "cassandra"
}
variable "cassandra_cluster_name" {
description = "cassandra cluster name"
default = "cassandra"
}
variable "cassandra_version" {
description = "cassandra version"
default = "311x"
}
variable "machine_type" {
description = "GCE machine type"
default = "n1-standard-4"
}
variable "boot_disk_size" {
description = "boot disk size in GB"
default = 20
}
variable "data_disk_size" {
description = "data disk size in GB"
default = 100
}
variable "tags" {
description = "tags"
default = ["allow-private-ssh", "default-to-internet"]
}
variable "subnetwork" {
description = "subnetwork"
default = "default"
}
variable "ssh_user" {
description = "ssh user name for remote exec"
}
variable "ssh_key_path" {
description = "ssh key path name for remote exec"
}
variable "bootstrap" {
description = "false for new cluster, true for adding nodes to existing cluster"
}