(publicKey: string)
| 204 | ].join("\n"); |
| 205 | |
| 206 | const linuxUserData = (publicKey: string): string => |
| 207 | ["#cloud-config", "ssh_authorized_keys:", ` - ${publicKey}`].join("\n"); |
| 208 | |
| 209 | const freePort = (): Promise<number> => |
| 210 | new Promise((resolve, reject) => { |