UNPKG

@jahed/terraform

Version:

A wrapper which downloads and runs Terraform locally via npm.

77 lines (76 loc) 3.14 kB
"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 () { var ownKeys = function(o) { ownKeys = Object.getOwnPropertyNames || function (o) { var ar = []; for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; return ar; }; return ownKeys(o); }; return function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); __setModuleDefault(result, mod); return result; }; })(); var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.getExpectedHash = getExpectedHash; const promises_1 = require("node:fs/promises"); const node_path_1 = __importDefault(require("node:path")); const openpgp = __importStar(require("openpgp")); const download_1 = require("./download"); const getDownloadFilename_1 = require("./getDownloadFilename"); function getHashesUrl({ version }) { return `https://releases.hashicorp.com/terraform/${version}/terraform_${version}_SHA256SUMS`; } async function getExpectedHash(args) { const hashUrl = getHashesUrl(args); const hashes = await (0, download_1.download)(hashUrl); const publicKey = await openpgp.readKey({ armoredKey: await (0, promises_1.readFile)(node_path_1.default.resolve(__dirname, "../hashicorp.asc"), "utf-8"), }); const signature = await openpgp.readSignature({ binarySignature: await (0, download_1.download)(`${hashUrl}.72D7468F.sig`), }); const { signatures: [{ verified }], } = await openpgp.verify({ message: await openpgp.createMessage({ binary: hashes }), signature, verificationKeys: publicKey, }); try { await verified; } catch { throw new Error("hashes not signed by hashicorp"); } const filename = (0, getDownloadFilename_1.getDownloadFilename)(args); for (const line of hashes.toString().trim().split("\n")) { const [hash, hashFilename] = line.split(" "); if (hashFilename === filename) { return hash; } } throw new Error(`expected hash not found for file (${filename})`); }