Remove S3 credentials

This commit is contained in:
Zdenek Topic 2018-10-17 15:25:54 +02:00
parent 678205fca3
commit b8b9367871
No known key found for this signature in database
GPG Key ID: 41897C1A6A09DEF5
1 changed files with 3 additions and 3 deletions

View File

@ -125,11 +125,11 @@ fileprivate extension S3AdapterTests {
bucket: "com.zdnkt.vapor-filesystem.testing",
config: S3Adapter.Config(
auth: S3Adapter.Auth(
accessKey: "AKIAILEJQGW4TOLFRPWA",
secretKey: "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"
accessKey: Environment.get("S3_ACCESS_KEY")!,
secretKey: Environment.get("S3_SECRET_KEY")!
),
region: .euCentral1,
defaultAccess: .publicRead
defaultAccess: .privateAccess
)
)
}