This repository has been archived by the owner on Apr 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
231 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
"use strict"; | ||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
var desc = Object.getOwnPropertyDescriptor(m, k); | ||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { | ||
desc = { enumerable: true, get: function() { return m[k]; } }; | ||
} | ||
Object.defineProperty(o, k2, desc); | ||
}) : (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
o[k2] = m[k]; | ||
})); | ||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { | ||
Object.defineProperty(o, "default", { enumerable: true, value: v }); | ||
}) : function(o, v) { | ||
o["default"] = v; | ||
}); | ||
var __importStar = (this && this.__importStar) || function (mod) { | ||
if (mod && mod.__esModule) return mod; | ||
var result = {}; | ||
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); | ||
__setModuleDefault(result, mod); | ||
return result; | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
const fs = __importStar(require("fs")); | ||
const vault = require("node-vault"); | ||
class VaultModule { | ||
constructor(vaultRole) { | ||
this.vaultClient = vault({ | ||
apiVersion: 'v1', | ||
endpoint: "http://vault.vault-dev.svc:8200", | ||
}); | ||
this.vaultRole = vaultRole; | ||
this.isKubelogged = false; | ||
} | ||
async readSecret(path) { | ||
const JWT_TOKEN_FILE = "/var/run/secrets/kubernetes.io/serviceaccount/token"; | ||
const jwt = fs.readFileSync(JWT_TOKEN_FILE); | ||
if (!this.isKubelogged) { | ||
try { | ||
const result = await this.vaultClient.kubernetesLogin({ | ||
"role": this.vaultRole, | ||
"jwt": jwt.toString() | ||
}); | ||
this.vaultClient.token = result.auth.client_token; | ||
} | ||
catch (error) { | ||
console.error('Error authenticating to vault instance:', error.message); | ||
throw error; | ||
} | ||
this.isKubelogged = true; | ||
} | ||
try { | ||
const { data } = await this.vaultClient.read(path); | ||
const obj = Object.keys(data.data); | ||
return data.data[obj[0]]; | ||
} | ||
catch (error) { | ||
console.error('Error reading secret:', error.message); | ||
throw error; | ||
} | ||
} | ||
} | ||
exports.default = VaultModule; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
import * as fs from 'fs'; | ||
|
||
const vault = require("node-vault"); | ||
|
||
|
||
class VaultModule { | ||
private vaultClient: any; | ||
private readonly vaultRole: string | ||
private isKubelogged: boolean | ||
|
||
constructor(vaultRole: string) { | ||
this.vaultClient = vault({ | ||
apiVersion: 'v1', | ||
endpoint: "http://vault.vault-dev.svc:8200", | ||
}); | ||
this.vaultRole = vaultRole | ||
this.isKubelogged = false | ||
} | ||
|
||
async readSecret(path: string): Promise<any> { | ||
const JWT_TOKEN_FILE="/var/run/secrets/kubernetes.io/serviceaccount/token"; | ||
const jwt = fs.readFileSync(JWT_TOKEN_FILE); | ||
|
||
if (!this.isKubelogged) { | ||
try { | ||
const result = await this.vaultClient.kubernetesLogin({ | ||
"role": this.vaultRole, | ||
"jwt": jwt.toString() | ||
}); | ||
this.vaultClient.token = result.auth.client_token; | ||
} catch (error) { | ||
console.error('Error authenticating to vault instance:', error); | ||
throw error; | ||
} | ||
this.isKubelogged = true | ||
} | ||
try { | ||
const res = await this.vaultClient.read(path); | ||
let obj = Object.keys(res.data.data) | ||
return res.data.data[obj[0]] | ||
} catch (error) { | ||
console.error('Error reading secret:', error); | ||
throw error; | ||
} | ||
} | ||
} | ||
|
||
export default VaultModule; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"name": "vault-integrated", | ||
"version": "1.0.0", | ||
"description": "Vault integrated for template application", | ||
"main": "app.js", | ||
"scripts": { | ||
"build": "tsc", | ||
"start": "node index.ts" | ||
}, | ||
"dependencies": { | ||
"node-vault": "^0.10.2" | ||
}, | ||
"devDependencies": { | ||
"typescript": "5.1.6" | ||
}, | ||
"engines": { | ||
"node": "18.11.17" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"compilerOptions": { | ||
"target": "es2018", | ||
"module": "commonjs", | ||
"outDir": ".", | ||
"rootDir": ".", | ||
"strict": true, | ||
"esModuleInterop": true | ||
}, | ||
"include": [ | ||
"*.ts" | ||
], | ||
"exclude": [ | ||
"node_modules" | ||
] | ||
} |