-
Notifications
You must be signed in to change notification settings - Fork 0
Use ExAws SES adapter with ECS task-role credentials #613
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
1c459d7
48ae4c4
c620a8a
f857268
d77d1f0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -65,6 +65,8 @@ defmodule GtfsPlanner.MixProject do | |
| {:swoosh, "~> 1.16"}, | ||
| {:gen_smtp, "~> 1.0"}, | ||
| {:phoenix_swoosh, "~> 1.2"}, | ||
| {:ex_aws, "~> 2.1"}, | ||
| {:sweet_xml, "~> 0.6"}, | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. False positive — |
||
| {:req, "~> 0.5"}, | ||
| {:telemetry_metrics, "~> 1.0"}, | ||
| {:telemetry_poller, "~> 1.0"}, | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed in 50d6ad4 — added
http_client: ExAws.Request.Reqto the:ex_awsconfig. We already depend on:req, and ex_aws shipsExAws.Request.Reqas a built-in alternative to the default Hackney client. Confirmed via deps/ex_aws/lib/ex_aws/instance_meta.ex:18 that instance-role credential resolution goes throughconfig.http_client.request/5, so this is required for the credential lookup to work in ECS.