Is there a recommended way to use a `.env` file wi...
# general
m
Is there a recommended way to use a
.env
file with an ECS task definition? It looks like
environment
supports an array of key value objects, but nothing akin to
--env-file
… should I just read in that file locally, and dynamically build the key values array?
g
I think reading the file in and building the array in code is the best/right approach.
m
Thank you for the confirmation 👍