Skip to content

Commit

Permalink
Add tiny improvement to AWS blog post
Browse files Browse the repository at this point in the history
  • Loading branch information
whatyouhide committed Feb 26, 2024
1 parent 76cdad5 commit aaf3da2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion content/posts/2022-01-25-testing-aws-in-elixir/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,10 @@ for service <- [:s3, :sqs] do
config :ex_aws, service,
scheme: aws_uri.scheme,
host: aws_uri.host,
port: aws_uri.port
port: aws_uri.port,
# You might also want to set bogus credentials:
access_key_id: "my-key-id",
secret_access_key: "my-secret-key"
end
```

Expand Down

0 comments on commit aaf3da2

Please sign in to comment.