-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathterraform.tfvars
79 lines (56 loc) · 2.33 KB
/
terraform.tfvars
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
# (required) your IBM IaaS Classic Infrastructure full username
ibmcloud_iaas_classic_username = ""
# (required) your IBM IaaS Classic Infrastructure API key
ibmcloud_iaas_api_key = ""
# (required) Enter your IBM Cloud API Key
ibmcloud_api_key = ""
# (required) public ssh key for remote console that used to control the master host
remote_console_public_ssh_key = ""
# (optional) Spectrum product need to be installed, either symphony or lsf
# spectrum_product = "symphony"
# (optional) Symphony / LSF cluster name
# cluster_name = "spectrum-cluster"
# (optional) uri of scripts folder
# scripts_path_uri = "https://raw.githubusercontent.com/chenxpcn/spectrum-ibmcloud-basic/master/scripts"
scripts_path_uri = ""
# (required) uri of installer package
# installer_uri = "http://<http_server_ip>/suite/lsfsent10.2.0.8-x86_64.bin"
installer_uri = ""
# (required) uri of entitlement file
# entitlement_uri = "http://<http_server_ip>/entitlements/sym_adv_ev_entitlement.dat"
entitlement_uri = ""
# (required) password for cluster administrator
# cluster_admin_password = "spectrumpassw0rd"
cluster_admin_password = ""
# (optional) domain name for master host and compute host
# domain_name = "spectrum.ibmcloud"
# (required) data center where master host and compute host will be provisioned
# data_center = "dal13"
data_center = ""
# (required) public vlan id for master host
# public_vlan_id = "2317207"
public_vlan_id = ""
# (required) private vlan id for both master host and compute host
# private_vlan_id = "2317209"
private_vlan_id = ""
# (required) private vlan number for both master host and compute host
# private_vlan_number = "1207"
private_vlan_number = ""
# (optional) cpu cores for master host
# master_cores = "4"
# (optional) memory in MBytes on master host
# master_memory = "32768"
# (optional) disk size in GBytes on master host
# master_disk = "100"
# (optional) network speed in Mbps on master host
# master_network_speed = "100"
# (optional) cpu cores for compute host
# compute_cores = "2"
# (optional) memory in MBytes on compute host
# compute_memory = "4096"
# (optional) disk size in GBytes on compute host
# compute_disk = "25"
# (optional) network speed in Mbps on compute host
# compute_network_speed = "100"
# (optional) image name for dynamic host, the image is come from compute host
# image_name = "SpectrumClusterDynamicHostImage"