-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
55 lines (47 loc) · 1.09 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
# External
# --------
variable "cloudflare_api_key" {
type = string
description = "Cloudflare API Key"
sensitive = true
}
variable "cloudflare_email" {
description = "Cloudflare Account email"
type = string
}
variable "cloudflare_zone" {
description = "Cloudflare Zone"
type = string
}
variable "cloudflare_account_id" {
description = "Cloudflare Account ID"
type = string
}
variable "zerotier_central_token" {
description = "ZeroTier Central API Token"
type = string
sensitive = true
}
variable "zerotier_bridged_route" {
description = "Bridged route(Internal LAN)"
type = string
default = "192.168.42.0/24"
}
# System
# ------
variable "metallb_addresses" {
type = list(string)
description = "MetalLB IP Address Pool"
default = ["192.168.42.230-192.168.42.250"]
}
# Bootstrap
# ---------
variable "homelab_repo_url" {
type = string
description = "Homelab repo URL"
}
variable "homelab_repo_token" {
type = string
description = "GitHub Access Token with repo skope"
sensitive = true
}