I'm working on a new project using ECS with Docker.
Instead of using a cryptographic file, I'm storing credentials dynamically in flow_creds.json
by leveraging AWS Secrets Manager like:
- Server:
{{{SQL_IP}}}
- Password:
{{{SQL_PW}}}
This approach works fine with the mssql-plus
contrib package. However, when I use other packages like gsheets
or OPCUA
, the dynamic variables in the credentials do not work.
Is there a solution to this issue?
This is the only method I've found to persist credentials across deployments in Docker.