mirror of
https://github.com/seemueller-io/cluster.git
synced 2025-09-08 22:56:46 +00:00
14 lines
464 B
TypeScript
Executable File
14 lines
464 B
TypeScript
Executable File
// Legacy: not used
|
|
// Intended to run the entire deployment process and generate artifacts for client applications without requiring developer intervention
|
|
|
|
// #!/usr/bin/env bun
|
|
//
|
|
// import {execSync} from "child_process";
|
|
//
|
|
// function deployCdktf() {
|
|
// execSync("cdktf deploy --auto-approve", {stdio: "inherit"})
|
|
// execSync("./extract-outputs.ts", {stdio: "inherit"})
|
|
// execSync("./update-vars.ts", {stdio: "inherit"})
|
|
// }
|
|
//
|
|
// deployCdktf()
|