UNPKG

@nordicsemiconductor/asset-tracker-cloud-aws

Version:

A reference implementation of a serverless backend for an IoT product developed using AWS CDK in TypeScript.

9 lines (8 loc) 265 B
import path from 'path'; export var caFileLocations = function(param) { var id = param.id, certsDir = param.certsDir; return { cert: path.resolve(certsDir, "".concat(id, ".pem")), key: path.resolve(certsDir, "".concat(id, ".key")) }; };