fix: remove star technology + flake update

This commit is contained in:
2025-12-08 12:19:12 +05:00
parent 43f15c7957
commit a22192e978
4 changed files with 3 additions and 87 deletions

View File

@@ -5,7 +5,6 @@ import { NamespaceV1 } from "@cdktf/provider-kubernetes/lib/namespace-v1";
import { OnePasswordSecret } from "../../utils";
import { TerraFirmaGreg } from "./tfg";
import { GTNH } from "./gtnh";
import { StarTechnology } from "./star-technology";
export class GamingServices extends TerraformStack {
constructor(scope: Construct, id: string) {
@@ -32,6 +31,5 @@ export class GamingServices extends TerraformStack {
new TerraFirmaGreg(this, "tfg", provider, namespace);
new GTNH(this, "gtnh", provider, namespace);
new StarTechnology(this, "star-technology", provider, namespace);
}
}