forked from WorksOnArm/OpenStackWorksOnArm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvars.tf
More file actions
59 lines (47 loc) · 1.5 KB
/
vars.tf
File metadata and controls
59 lines (47 loc) · 1.5 KB
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
variable "packet_auth_token" {
description = "Your packet API key"
}
variable "packet_project_id" {
description = "Packet Project ID"
}
# for best results deploy all hosts in the same facility - list a single facility
variable "packet_facilities" {
description = "Packet facilities: US East(ewr1), US West(sjc1), Tokyo (nrt1) or EU(ams1). Default: ewr1"
default = ["ewr1"]
}
variable "packet_controller_type" {
description = "Instance type of OpenStack controller"
default = "c2.medium.x86"
}
variable "packet_dashboard_type" {
description = "Instance type of OpenStack dashboard"
default = "c2.medium.x86"
}
variable "packet_compute-x86_type" {
description = "Instance type of OpenStack x86 compute nodes"
default = "n2.xlarge.x86"
}
variable "openstack_compute-x86_count" {
description = "Number of OpenStack x86 compute nodes to deploy"
default = "1"
}
variable "packet_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 "cloud_ssh_public_key_path" {
description = "Path to your public SSH key path"
default = "./packet-key.pub"
}
variable "cloud_ssh_key_path" {
description = "Path to your private SSH key for the project"
default = "./packet-key"
}
variable "create_dns" {
description = "If set to true, DNSSimple will be setup"
default = false
}