-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
62 lines (56 loc) · 1.36 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
# Cloud provider
variable "cloudstack_provider" {
type = object({
api_url = string
api_key = string
secret_key = string
})
description = "The settings for the CloudStack provider"
}
variable "cloud_local_cluster" {
type = object({
count = number
service_offering = string
network_id = string
template = string
zone = string
root_disk_size = number
})
description = "The settings for local-cluster VM's in CloudStack"
}
variable "cloud_extra_cluster" {
type = object({
count_cp = number
count_worker = number
service_offering = string
network_id = string
template = string
zone = string
root_disk_size_cp = number
root_disk_size_worker = number
extra_disk_offering = string
})
description = "The settings for extra-cluster VM's in CloudStack"
}
variable "domain" {
type = object({
domain = string
subdomain = string
})
description = "The domain information"
}
variable "transip" {
type = object({
account_name = string
private_key = string
})
description = "TransIP credentials"
}
variable "home_ips" {
type = list(string)
description = "The home IP's"
}
variable "prefix" {
type = string
description = "Global prefix"
}