-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathprovider.tf
More file actions
97 lines (89 loc) · 2 KB
/
Copy pathprovider.tf
File metadata and controls
97 lines (89 loc) · 2 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
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
90
91
92
93
94
95
96
97
terraform {
required_version = ">= 1.0.0"
required_providers {
sonarr = {
source = "devopsarr/sonarr"
version = "3.4.0"
}
prowlarr = {
source = "devopsarr/prowlarr"
version = "3.0.2"
}
radarr = {
source = "devopsarr/radarr"
version = "2.3.3"
}
proxmox = {
source = "bpg/proxmox"
version = "0.84.1"
}
flux = {
source = "fluxcd/flux"
version = "1.7.1"
}
oci = {
source = "oracle/oci"
version = "7.20.0"
}
cloudflare = {
source = "cloudflare/cloudflare"
version = "5.10.1"
}
bitwarden = {
source = "maxlaverse/bitwarden"
version = "0.16.0"
}
twingate = {
source = "Twingate/twingate"
version = "3.5.0"
}
authentik = {
source = "goauthentik/authentik"
version = "2025.8.1"
}
unifi = {
source = "ubiquiti-community/unifi"
version = "0.41.3"
}
}
}
provider "cloudflare" {
# api_token = data.bitwarden_secret.cloudflare_api_token.value
api_key = data.bitwarden_secret.cloudflare_api_key.value
email = "matt@mafyuh.dev"
}
provider "bitwarden" {
access_token = var.access_token
experimental {
embedded_client = true
}
}
# provider "proxmox" {
# endpoint = "https://prox.mafyuh.xyz/"
# password = data.bitwarden_secret.ssh_password.value
# ## TODO: stop using root
# username = "root@pam"
# insecure = false
# random_vm_ids = true
# ssh {
# agent = true
# ## TODO: stop using root
# username = "root"
# password = data.bitwarden_secret.ssh_password.value
# node {
# name = "prox"
# address = data.bitwarden_secret.prox_ip_address.value
# }
# node {
# name = "pve2"
# address = data.bitwarden_secret.pve2_ip_address.value
# }
# }
# }
provider "twingate" {
api_token = data.bitwarden_secret.twingate_api_key.value
network = "mafyuh"
}
# provider "github" {
# token = data.bitwarden_secret.github_token.value
# }