我现有的本地托管服务器加载其 iot 身份 + 凭据,如下所示:
function initIot() {
var device = awsIot.device({
keyPath: './iot_credentials/ident-private.pem.key',
certPath: './iot_credentials/ident-certificate.pem.crt',
caPath: './iot_credentials/rootca.pem',
clientId: 'iot-server-1',
host: endpoint
});
..而且我不会在任何地方提交私钥和证书。它安全地存在于服务器磁盘上。
我如何安全地将其迁移到在 codestar 上运行的无服务器 cloud9 设置?假设我信任我的 AWS 团队,我可以将其存储在项目文件中吗?