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