-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.tf
43 lines (43 loc) · 899 Bytes
/
main.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
terraform {
backend "remote" {
organization = "public-transport"
workspaces {
name = "infrastructure"
}
}
required_version = "~> 1.7"
required_providers {
digitalocean = {
source = "digitalocean/digitalocean"
version = "~> 2.42"
}
mongodbatlas = {
source = "mongodb/mongodbatlas"
version = "~> 1.20"
}
betteruptime = {
source = "BetterStackHQ/better-uptime"
version = "~> 0.11"
}
cloudflare = {
source = "cloudflare/cloudflare"
version = "~> 4.42"
}
hcloud = {
source = "hetznercloud/hcloud"
version = "~> 1.48"
}
flux = {
source = "fluxcd/flux"
version = "~> 1.4"
}
kubernetes = {
source = "hashicorp/kubernetes"
version = "~> 2.32"
}
github = {
source = "integrations/github"
version = "~> 6.3"
}
}
}