Skip to content

Commit f6db68b

Browse files
committed
Commit config to the repo
1 parent 1f84116 commit f6db68b

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

Diff for: .gitignore

+1-2
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,4 @@ req_athena-*.tar
2727

2828
# AWS INI files&credentials
2929
.env*
30-
/config/*credentials*
31-
/config/*config*
30+
/tmp

Diff for: config/config.exs

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import Config
2+
3+
# Change aws_credentials so it does not affect testing
4+
config :aws_credentials,
5+
credential_providers: [],
6+
fail_if_unavailable: false

Diff for: test/integration_test.exs

+1-1
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ defmodule IntegrationTest do
333333
end
334334

335335
describe "with aws_credentials" do
336-
@path Path.expand("./config/") <> "/"
336+
@path Path.expand("./tmp/") <> "/"
337337

338338
setup tags do
339339
if env = tags[:aws_credentials] do

0 commit comments

Comments
 (0)