in packages/opentelemetry-resource-util/src/detector/faas.ts [75:81]
function lookupEnv(key: string): string {
const val = process.env[key];
if (val === undefined) {
throw new Error(`Environment variable ${key} not found`);
}
return val;
}