-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
74 lines (61 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
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
variable "resource_group_name" {
description = "Resource Group for Cluster"
type = string
default = "Sahil-Desai-RG"
}
variable "shared_access_group_name" {
description = "Shared Access Group for Users"
type = string
default = "aaron5-ag"
}
# Definded by reservation-ms
variable "datacenter" {
description = "Datacenter"
type = string
#default = "tok02"
default = "dal13"
}
variable "ibm_regions_map" {
type = map(any)
description = "IBM Cloud Region Config"
default = {
"dal13" = { region = "us-south" },
"tok02" = { region = "jp-tok" }
}
}
variable "user_email" {
type = string
}
variable "user_id" {
type = string
}
variable "requestId" {
type = string
default = "NoRequestID"
}
variable "templateId" {
type = string
default = "NoTemplateID"
}
variable "cloudAccount" {
type = string
default = ""
}
variable "cloudTarget" {
type = string
default = ""
}
# variable "ibmcloud_api_key" {
# description = "IBM Cloud API Key"
# type = string
# }
variable "cluster_name" {
description = "Cluster Name/ID"
type = string
default="itzroks-sahil1112-2vscmtnz"
}
variable "storage_size" {
description = "NFS Size"
type = number
default = 0
}