-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
66 lines (53 loc) · 1.65 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
variable "do_token" {
description = "Token to authenticate with your Digital Ocean account."
}
variable "do_region" {
description = "Digital Ocean region where the MiaB droplet will be hosted."
}
variable "spaces_backup_enabled" {
default = false
description = "If enabled, a spaces bucket will be created, and miab will send backups there."
}
variable "spaces_access_id" {
description = "Digital Ocean Spaces access ID."
}
variable "spaces_secret_key" {
description = "Digital Ocean Spaces secret key."
}
variable "droplet_image" {
default = "ubuntu-22-04-x64"
description = "Base OS image to use for the MiaB droplet."
}
variable "droplet_private_networking" {
default = "true"
description = "Enable private networking for miab droplet."
}
variable "droplet_size" {
default = "s-1vcpu-1gb"
description = "CPU and memory sizing for the MiaB droplet."
}
variable "ssh_private_key" {
description = "The path to the SSH key you'd like to access the MiaB host with."
}
variable "miab_storage_user" {
type = string
default = "user-data"
description = "MiaB storage username"
}
variable "miab_storage_root" {
type = string
default = "/root/miab/"
description = "Base directory for MiaB files."
}
variable "miab_primary_hostname" {
type = string
description = "Fully-qualified domain name for your email server. This is typically box.example.com, and your email address would be [email protected]."
}
variable "ipv6_enabled" {
type = bool
description = "Enable IPv6 for MiaB and the Droplet"
default = false
}
variable "ssh_port" {
description = "Non-default port for SSH"
}