-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
43 lines (34 loc) · 1.26 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
# ---------------------------------------------------------------------------------------------------------------------
# Environmental variables
# You probably want to define these as environmental variables.
# Instructions on that are here: https://github.com/cloud-partners/oci-prerequisites
# ---------------------------------------------------------------------------------------------------------------------
# Required by the OCI Provider
variable "tenancy_ocid" {
}
variable "compartment_ocid" {
}
variable "region" {
}
# Key used to SSH to OCI VMs
variable "ssh_public_key" {
}
# ---------------------------------------------------------------------------------------------------------------------
# Optional variables
# The defaults here will give you a cluster. You can also modify these.
# ---------------------------------------------------------------------------------------------------------------------
variable "node_shape" {
description = "Shape for DSE nodes"
default = "VM.Standard2.4"
}
variable "node_count" {
description = "Number of DSE nodes"
default = 3
}
variable "dse_version" {
description = "DSE version"
default = "6.8.6"
}
variable "password" {
description = "Password for DSE user 'cassandra' and OpsCenter user 'admin'"
}