Define a basic but working complete k3s-kubernetes setup

This commit is contained in:
2025-03-10 01:21:02 +01:00
parent 2d93766c09
commit 1eb2ce341a
11 changed files with 404 additions and 32 deletions

View File

@@ -1,13 +1,21 @@
terraform {
required_providers {
hetznerdns = {
source = "timohirt/hetznerdns"
source = "timohirt/hetznerdns"
version = "2.2.0"
}
hcloud = {
source = "hetznercloud/hcloud"
source = "hetznercloud/hcloud"
version = "1.50.0"
}
random = {
source = "hashicorp/random"
version = "3.7.1"
}
external = {
source = "hashicorp/external"
version = "2.3.4"
}
}
}
@@ -18,3 +26,6 @@ provider "hetznerdns" {
provider "hcloud" {
token = var.hetzner_cloud_apitoken
}
provider "random" {}
provider "external" {}