MCPcopy Create free account
hub / github.com/UsefulSoftwareCo/executor / aws

Function aws

e2e/src/vm/ec2.ts:69–74  ·  view source on GitHub ↗
(args: ReadonlyArray<string>)

Source from the content-addressed store, hash-verified

67};
68
69const 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. */
77const egressIp = async (): Promise<string> => {

Callers 4

latestAmiFunction · 0.85
defaultSubnetFunction · 0.85
ensureSecurityGroupFunction · 0.85
ec2VmFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected