mirror of
https://github.com/apricote/home-cloud.git
synced 2026-01-13 13:01:03 +00:00
35 lines
590 B
HCL
35 lines
590 B
HCL
terraform {
|
|
required_providers {
|
|
hcloud = {
|
|
source = "hetznercloud/hcloud"
|
|
version = ">= 1.36.2"
|
|
}
|
|
|
|
hetznerdns = {
|
|
source = "timohirt/hetznerdns"
|
|
version = ">= 2.2.0"
|
|
}
|
|
|
|
vercel = {
|
|
source = "vercel/vercel"
|
|
version = ">= 0.11.4"
|
|
}
|
|
|
|
postgresql = {
|
|
source = "cyrilgdn/postgresql"
|
|
version = ">= 1.21.0"
|
|
}
|
|
|
|
random = {
|
|
source = "hashicorp/random"
|
|
}
|
|
template = {
|
|
source = "hashicorp/template"
|
|
}
|
|
tls = {
|
|
source = "hashicorp/tls"
|
|
}
|
|
}
|
|
required_version = ">= 1.3.3"
|
|
}
|
|
|