feat: CDKTF | migrate redis to cdktf

This commit is contained in:
2025-07-15 09:28:50 +05:00
parent 6f782e4775
commit 5475a25b94
3 changed files with 37 additions and 8 deletions

View File

@@ -10,6 +10,7 @@ import { OnePassword } from "./1password";
import { PostgresCluster } from "./postgres";
import { Longhorn } from "./longhorn";
import { AuthentikServer } from "./authentik";
import { RedisCluster } from "./redis";
dotenv.config();
@@ -57,6 +58,13 @@ class Homelab extends TerraformStack {
initSecretName: "postgres-password",
});
new RedisCluster(this, "redis-cluster", {
provider: helm,
namespace: "redis-system",
name: "redis",
version: "20.2.0",
});
new AuthentikServer(this, "authentik-server", {
provider: helm,
name: "authentik",