feat: CDKTF | migrate redis to cdktf
This commit is contained in:
8
main.ts
8
main.ts
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user