forked from equinix/terraform-equinix-metal-platform9-k8s
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
90 lines (67 loc) · 1.2 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
###############################
# Packet Variables
###############################
variable "packet_api_key" {
}
variable "cluster_name" {
default = "platform9-on-packet"
}
variable "project_name" {
default = "platform9-on-packet"
}
variable "packet_org_id" {
}
variable "bgp_asn" {
default = 65000
}
variable "master_size" {
default = "c3.small.x86"
}
variable "worker_size" {
default = "c3.small.x86"
}
variable "facility" {
default = "sv15"
}
variable "operating_system" {
default = "ubuntu_18_04"
}
variable "billing_cycle" {
default = "hourly"
}
variable "master_count" {
default = 1
}
variable "worker_count" {
default = 1
}
###############################
# Platform9 Variables
###############################
variable "platform9_fqdn" {
}
variable "platform9_user" {
}
variable "platform9_password" {
}
variable "platform9_tenant" {
default = "service"
}
variable "platform9_region" {
default = "RegionOne"
}
variable "hostagent_installer_type" {
default = ""
}
variable "hostagent_install_failure_webhook" {
default = ""
}
variable "hostagent_install_options" {
default = ""
}
variable "http_proxy" {
default = ""
}
variable "is_spot_instance" {
default = false
}