-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathvariables.tf
63 lines (51 loc) · 1.59 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
variable "equinix_metal_auth_token" {
description = "Your metal API key"
}
variable "equinix_metal_project_id" {
type = string
default = "null"
description = "Equinix Metal Project ID"
}
variable "equinix_metal_organization_id" {
type = string
default = "null"
description = "Equinix Metal Organization ID"
}
variable "equinix_metal_create_project" {
type = bool
default = true
description = "Create a Metal Project if this is 'true'. Else use provided 'metal_project_id'"
}
variable "equinix_metal_project_name" {
type = string
default = "terraform-metal-openstack"
description = "The name of the Metal project if 'create_project' is 'true'."
}
variable "equinix_metal_controller_type" {
description = "Instance type of OpenStack controller"
default = "c3.medium.x86"
}
variable "equinix_metal_dashboard_type" {
description = "Instance type of OpenStack dashboard"
default = "c3.medium.x86"
}
variable "equinix_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 "equinix_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
}