mirror of
https://github.com/apricote/home-cloud.git
synced 2026-01-13 21:11:02 +00:00
Broke when i redid the cluster ca stuff to fix an expired cert. Cant figure out how to fix the state to read from the cluster.
40 lines
694 B
HCL
40 lines
694 B
HCL
|
|
terraform {
|
|
required_version = ">= 1.0"
|
|
|
|
required_providers {
|
|
hcloud = {
|
|
source = "hetznercloud/hcloud"
|
|
}
|
|
hetznerdns = {
|
|
source = "timohirt/hetznerdns"
|
|
}
|
|
tls = {
|
|
source = "hashicorp/tls"
|
|
}
|
|
template = {
|
|
source = "hashicorp/template"
|
|
}
|
|
random = {
|
|
source = "hashicorp/random"
|
|
}
|
|
null = {
|
|
source = "hashicorp/null"
|
|
}
|
|
|
|
github = {
|
|
source = "integrations/github"
|
|
}
|
|
kubernetes = {
|
|
source = "hashicorp/kubernetes"
|
|
}
|
|
kubectl = {
|
|
source = "gavinbunney/kubectl"
|
|
version = ">= 1.10.0"
|
|
}
|
|
flux = {
|
|
source = "fluxcd/flux"
|
|
version = ">= 0.10.0"
|
|
}
|
|
}
|
|
}
|