skeet
Version:
Full-stack TypeScript Serverless Framework
23 lines (21 loc) • 486 B
text/typescript
import { execSyncCmd } from '@/lib/execSyncCmd'
import { getNetworkConfig } from '@/lib/getNetworkConfig'
export const createRouter = async (
projectId: string,
appName: string,
region: string
) => {
const networkNames = await getNetworkConfig(projectId, appName)
const shCmd = [
'gcloud',
'compute',
'routers',
'create',
networkNames.routerName,
'--network',
networkNames.networkName,
'--region',
region,
]
await execSyncCmd(shCmd)
}