-
Notifications
You must be signed in to change notification settings - Fork 99
/
Copy pathget_environment_variable_for_lambda_functions.js
60 lines (52 loc) · 2.02 KB
/
get_environment_variable_for_lambda_functions.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/**
* We can use this script to get a particular environment variable of all our Lambda functions at once.
*/
const awsConfigHelper = require('./util/awsConfigHelper');
const wait = require('./util/wait');
const AWS = require('aws-sdk');
const cli = require('cli');
const cliArgs = cli.parse({
filterName: ['f', 'Pass filter name to filter Lambda functions', 'string'],
envVarName: ['n', 'Environment variable name', 'string']
});
if (!cliArgs.region || !cliArgs.envVarName) {
cli.getUsage();
}
const filterRegex = new RegExp(cliArgs.filterName);
let isCompleted = false;
let nextToken = undefined;
async function getEnvironmentVariable() {
await awsConfigHelper.updateConfig(cliArgs.region);
const lambda = new AWS.Lambda();
while (!isCompleted) {
try {
const response = await lambda.listFunctions({
Marker: nextToken
}).promise();
if (response.Functions) {
for (let i = 0; i < response.Functions.length; i++) {
const fn = response.Functions[i];
if (cliArgs.filterName && !fn.FunctionName.match(filterRegex)) {
continue;
}
if (fn.Environment && fn.Environment.Variables && fn.Environment.Variables[cliArgs.envVarName]) {
console.log(`${fn.FunctionName} has Environment variable: ${cliArgs.envVarName} with value: ${fn.Environment.Variables[cliArgs.envVarName]}`);
} else {
console.log(`${fn.FunctionName} does not have Environment variable: ${cliArgs.envVarName}`);
}
}
nextToken = response.NextMarker;
isCompleted = !nextToken;
} else {
isCompleted = true
}
} catch (error) {
if (error.code === 'ThrottlingException') {
await wait(2000);
} else {
throw error;
}
}
}
}
getEnvironmentVariable();