-
Notifications
You must be signed in to change notification settings - Fork 0
/
vars.tf
55 lines (40 loc) · 1.21 KB
/
vars.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
variable "aws_access_key" {
description = "aws_access_key"
}
variable "aws_secret_key" {
description = "aws_secret_key"
}
variable "route53_zone_id" {
description = "Route53 Zone ID"
}
variable "packet_api_key" {
description = "Packet API key"
}
variable "packet_project_id" {
description = "Packet Project ID"
}
variable "packet_facility" {
description = "Packet facility: US East(ewr1), US West(sjc1), or EU(ams1). Default: ewr1"
default = "ewr1"
}
variable "packet_rancher_server_type" {
description = "Packet server type used for Rancher servers. Default: baremetal_1"
default = "baremetal_1"
}
variable "packet_rancher_agent_type" {
description = "Packet server type used for Rancher agents. Default: baremetal_1"
default = "baremetal_1"
}
variable "fqdn" {
description = "FQDN for hosts. Appended to device name. Default is blank"
default = ""
}
variable "packet_ssh_public_key_path" {
description = "Path to your public SSH key path"
}
variable "rancher_mysql_root_password" {
description = "Root password for the mysql instance used by rancher server"
}
variable "rancher_mysql_cattle_password" {
description = "Password for cattle user for the rancher server mysql database"
}