2

I am moving a containerized application to an Azure IoT Edge device. I used to use docker secrets to manage things like private keys, database passwords etc. Is there a way to manage these secrets from the cloud?

1 Answers1

1

Your secrets can be managed as module twin properties from the cloud, and be "encrypted at rest" on your IoT Edge device - see https://github.com/Azure/iotedge/pull/1096 for more info/context.

kartben
  • 2,485
  • 21
  • 24