-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuse-aws.js
executable file
·64 lines (59 loc) · 1.85 KB
/
use-aws.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
61
62
63
64
#!/usr/bin/env node --experimental-modules
import { requireEnv } from "require-env-variable";
import fs from "fs";
import os from "os";
import path from "path";
import dotenv from "dotenv";
import parse from "csv-parse/lib/sync.js";
import copy from "clipboardy";
import open from "open";
import inquirer from "inquirer";
dotenv.config();
const { AWS_CREDENTIALS_HOME } = requireEnv("AWS_CREDENTIALS_HOME");
const homePath = AWS_CREDENTIALS_HOME.replace("~", os.homedir());
try {
const owners = fs.readdirSync(homePath);
inquirer
.prompt({
type: "list",
name: "account",
message: "Select AWS Account",
choices: owners,
})
.then(({ account }) => {
const profilesDir = path.join(homePath, account, "profiles");
const profiles = fs.readdirSync(profilesDir);
inquirer
.prompt({
type: "list",
name: "profile",
message: "Select a profile",
choices: profiles,
})
.then(({ profile }) => {
const credentialsFile = path.join(
homePath,
account,
"profiles",
profile,
"credentials.csv"
);
try {
const [credentials] = parse(fs.readFileSync(credentialsFile), {
columns: true,
});
console.log("Opening Console Link URL in your default browser...");
console.log(`Username: ${credentials["User name"]}`);
copy.writeSync(credentials["Password"]);
console.log("Password has been copied to clipboard");
open(credentials["Console login link"]);
} catch (err) {
console.error(
`Could not credentials file for ${profile}. Reason: ${err}`
);
}
});
});
} catch (err) {
console.error("Error while reading AWS credentials home");
}