-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
64 lines (51 loc) · 900 Bytes
/
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
variable "ibm_bx_api_key" {
type = string
default = ""
}
variable "ibm_sl_username" {
type = string
default = ""
}
variable "ibm_sl_api_key" {
type = string
default = ""
}
variable "dnsimple_token" {
type = string
default = ""
}
variable "dnsimple_account" {
type = string
default = ""
}
variable "datacenter" {
type = map(string)
default = {
us-east1 = "wdc04"
us-east2 = "wdc06"
us-east3 = "wdc07"
us-south1 = "dal10"
us-south2 = "dal12"
us-south3 = "dal13"
}
}
variable "os_reference_code" {
type = map(string)
default = {
u16 = "UBUNTU_16_64"
u18 = "UBUNTU_18_64"
}
}
variable "flavor_key_name" {
type = map(string)
default = {
medium = "B1_8X16X100"
large = "BL2_8X32X100"
}
}
variable "domain" {
default = "cdetesting.com"
}
variable "email" {
default = "[email protected]"
}