This repository was archived by the owner on Sep 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathvars.tf
More file actions
58 lines (46 loc) · 1.37 KB
/
vars.tf
File metadata and controls
58 lines (46 loc) · 1.37 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"
}
variable "packet_facility" {
description = "Packet facility: 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 = "baremetal_2a"
}
variable "packet_dashboard_type" {
description = "Instance type of OpenStack dashboard"
default = "baremetal_2a"
}
variable "packet_compute-x86_type" {
description = "Instance type of OpenStack x86 compute nodes"
default = "baremetal_0"
}
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 = "baremetal_2a"
}
variable "openstack_compute-arm_count" {
description = "Number of OpenStack ARM compute nodes to deploy"
default = "1"
}
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
}