This repository was archived by the owner on Mar 3, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathvariables.tf
More file actions
84 lines (62 loc) · 1.88 KB
/
variables.tf
File metadata and controls
84 lines (62 loc) · 1.88 KB
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
79
80
81
82
83
# Terraform variables
variable "tenancy_ocid" {}
variable "user_ocid" {}
variable "fingerprint" {}
variable "private_key_path" {}
variable "compartment_ocid" {}
variable "region" {
default = "us-ashburn-1"
}
variable "ssh_public_key" {
default = "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDAmdcyvIQnD497+A8X66VKdIqc7fhzm4dDUyazfg3qW5HudcPFmXi6kpyzkkzqgzk7l60cjVnCPcb+kV9LHs3i5hjQS63//NbRcz/YbPP6ICczWlebuHC1Ei0LcJTVDHt/alFBzlCIywFiTNogezcsXGLOgHmzIYE/PCPnpAiBALsC+0xJSafOiyQXtJBFcNl8VWflnZVtyGs+PVErc7/18BWpQ8bHCwycYFeqy/b1QfRSJ3HOR2tCGP66HTGJM89V/uLDEC1i95YZompHm4NaCI+f99CoszGbqmVEtdqEuF0C9MjLctUAkTC/LlBcgrOEcUFyQkkowZBBhMNOUQmz gilbertlau@MacBook-2.local"
}
#variable "ssh_private_key" {}
variable "InstanceOS" {
default = "CentOS"
}
variable "InstanceOSVersion" {
default = "7"
}
variable "DSE_Shape" {
default = "VM.DenseIO1.8"
}
variable "OPSC_BASE_IMAGE_ID" {
default = "ocid1.image.oc1.iad.aaaaaaaafshx4shy6fpj247hmpp2p7x7iuwrdltysfjk4kfbqpy6an6fcs3q"
}
variable "OPSC_Shape" {
default = "VM.DenseIO1.8"
}
variable "2TB" {
default = "2097152"
}
variable "host_user_name" {
default = "opc"
}
variable "OPSC_BootStrap" {
default = "./userdata/lcm_opscenter_userdata.sh"
}
variable "DSE_BootStrap" {
default = "./userdata/lcm_node_userdata.sh"
}
# DSE cluster name
variable "DSE_Cluster_Name" {
default = "JumpStart"
}
# DataStax Academy Credentials for DSE software download
variable "DataStax_Academy_Creds" {
type = "map"
default = {
username = "datastax@oracle.com"
password = "*9En9HH4j^p4"
}
}
# Collect #nodes in each AD from a user
# This value has always to be 1 for Jump Start
variable "Num_DSE_Nodes_In_Each_AD" {
default = "1"
}
# Collect user provided password for "cassandra" superuser
# The cassandra user's password has to be "datastax1!" for Jump Start
variable "Cassandra_DB_User_Password" {
default = "datastax1!"
}