Initial commit

This commit is contained in:
2026-07-18 12:00:33 +05:30
commit caac8413e9
83 changed files with 10262 additions and 0 deletions

14
terraform/providers.tf Normal file
View File

@@ -0,0 +1,14 @@
terraform {
required_providers {
kubernetes = {
source = "hashicorp/kubernetes"
version = ">= 2.10.0"
}
}
}
provider "kubernetes" {
# This points to your k3s config file.
# When you get your new server, we will update this to point to the new IP.
config_path = "~/.kube/config"
}