My existing locally hosted server loads its iot identity + credentials like so:
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
});
..and I don't commit the private key & cert anywhere. It lives securely on the server disk.
How would I securely migrate this to serverless cloud9 setup running on codestar? Assuming I trust my AWS team, can I just store it in the project's files?
As long as those files are properly restricted from public access, I think that's fine.