forked from equinix/terraform-equinix-metal-openstack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
45 lines (36 loc) · 1.17 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
variable "metal_auth_token" {
description = "Your metal API key"
}
# for best results deploy all hosts in the same facility - list a single facility
variable "metal_facilities" {
description = "Metal facilities: US East(ewr1), US West(sjc1), Tokyo (nrt1) or EU(ams1). Default: ewr1"
default = ["sjc1"]
}
variable "metal_controller_type" {
description = "Instance type of OpenStack controller"
default = "c3.medium.x86"
}
variable "metal_dashboard_type" {
description = "Instance type of OpenStack dashboard"
default = "c3.medium.x86"
}
variable "metal_compute-x86_type" {
description = "Instance type of OpenStack x86 compute nodes"
default = "c3.medium.x86"
}
variable "openstack_compute-x86_count" {
description = "Number of OpenStack x86 compute nodes to deploy"
default = 1
}
variable "metal_compute-arm_type" {
description = "Instance type of OpenStack ARM compute nodes"
default = "c2.large.arm"
}
variable "openstack_compute-arm_count" {
description = "Number of OpenStack ARM compute nodes to deploy"
default = 0
}
variable "create_dns" {
description = "If set to true, DNSSimple will be setup"
default = false
}