-
Notifications
You must be signed in to change notification settings - Fork 0
/
_variables.tf
99 lines (87 loc) · 2.53 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
variable "cml_url" {
description = "CML controller address"
type = string
default = "https://cml.tooling.provider.test"
}
variable "cml_username" {
description = "cml2 username"
type = string
default = "developer"
}
variable "cml_password" {
description = "cml2 password"
type = string
sensitive = true
}
variable "tenant" {
type = string
}
variable "name" {
type = string
}
variable "application" {
type = string
}
variable "environment" {
type = object ({
etype = string,
cloudprovider = string,
region = string,
availability_zone = string,
name = string,
eversion = string,
centercode = string,
change = string,
view = string,
management-r = string,
management-a = string,
management-i = string,
developer = string
})
}
variable "compartments" {
type = map(object({
name = string,
description = string,
ctype = string,
cversion = string,
cstatus = string,
environment = string,
centercode = string,
change = string,
view = string,
management-r = string,
management-a = string,
management-i = string,
developer = string,
numofservers = number,
addressing = string
})
)
}
variable "servers" {
type = map(object({
name = string,
description = string,
compartment = string,
size = string,
serverrole = string,
image = string,
sversion = string,
sstatus = string,
centercode = string,
change = string,
view = string,
management-r = string,
management-a = string,
management-i = string,
developer = string
})
)
}
variable "conduits" {
type = object ({})
}
variable "databases" {
type = object ({})
}