You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I did this for serratus-api using AWS CodePipeline+CodeBuild, but it's a bit nontrivial here since the project relies on secret values inside an untracked appsettings.json. So far we have gotten around this with deployments from local machines.
AWS Secrets Manager seems to be the way to go. I've looked into it a little bit and looks like we can:
get them during deployment-time as environment variables (source), or
reference them in the code directly
I'm thinking the 2nd option is easier, we'll just have to update the configuration builder.
The text was updated successfully, but these errors were encountered:
I did this for serratus-api using AWS CodePipeline+CodeBuild, but it's a bit nontrivial here since the project relies on secret values inside an untracked
appsettings.json
. So far we have gotten around this with deployments from local machines.AWS Secrets Manager seems to be the way to go. I've looked into it a little bit and looks like we can:
I'm thinking the 2nd option is easier, we'll just have to update the configuration builder.
The text was updated successfully, but these errors were encountered: