@fairmint/canton-node-sdk
Version:
Canton Node SDK
30 lines (25 loc) • 956 B
text/typescript
// Copyright (c) 2024 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved.
// SPDX-License-Identifier: Apache-2.0
import { runSvCantonForSvs } from '../sv-canton/pulumi';
import { awaitAllOrThrowAllExceptions, Operation, PulumiAbortController, stack } from '../pulumi';
import { upOperation, upStack } from '../pulumiOperations';
const abortController = new PulumiAbortController();
async function runRunbookUp() {
let operations: Operation[] = [];
const svRunbookStack = await stack('sv-runbook', 'sv-runbook', true, {});
operations.push(upOperation(svRunbookStack, abortController));
const cantonStacks = runSvCantonForSvs(
['sv'],
'up',
stack => {
return upStack(stack, abortController);
},
false
);
operations = operations.concat(cantonStacks);
await awaitAllOrThrowAllExceptions(operations);
}
runRunbookUp().catch(() => {
console.error('Failed to run up');
process.exit(1);
});