(args: ReadonlyArray<string>)
| 67 | }; |
| 68 | |
| 69 | const aws = async (args: ReadonlyArray<string>): Promise<string> => { |
| 70 | const { stdout } = await execFileP("aws", ["--region", REGION, "--output", "text", ...args], { |
| 71 | maxBuffer: 64 * 1024 * 1024, |
| 72 | }); |
| 73 | return stdout.trim(); |
| 74 | }; |
| 75 | |
| 76 | /** This host's public egress IP, for the inbound-SSH security-group rule. */ |
| 77 | const egressIp = async (): Promise<string> => { |
no outgoing calls
no test coverage detected