Browse Source
Merge pull request #3 from robwithhair/fix-creds-in-repo
Removed access keys
pull/119/head
Rob Harrison
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
12 additions and
12 deletions
-
postgres-backup-s3/integration-tests.test.yml
|
|
|
@ -9,18 +9,18 @@ services: |
|
|
|
sut: |
|
|
|
build: |
|
|
|
context: . |
|
|
|
command: 'sh integration-tests.sh' |
|
|
|
command: 'sh' |
|
|
|
depends_on: |
|
|
|
- postgres |
|
|
|
environment: |
|
|
|
PGPASSWORD: 12345 |
|
|
|
S3_REGION: "eu-west-2" |
|
|
|
S3_ACCESS_KEY_ID: "AKIASAH3OBJUZI7R3KIM" |
|
|
|
S3_SECRET_ACCESS_KEY: "cOYii3N+Tb3GOD4dwofPxBBhKFnHEJO0yswB5i0E" |
|
|
|
S3_BUCKET: flowmoco-s3-backup-test |
|
|
|
S3_PREFIX: "postgres-test" |
|
|
|
POSTGRES_HOST: postgres |
|
|
|
POSTGRES_DATABASE: user |
|
|
|
POSTGRES_USER: user |
|
|
|
POSTGRES_PASSWORD: 12345 |
|
|
|
POSTGRES_EXTRA_OPTS: '--schema=public --blobs' |
|
|
|
- PGPASSWORD=12345 |
|
|
|
- S3_REGION=eu-west-2 |
|
|
|
- S3_ACCESS_KEY_ID |
|
|
|
- S3_SECRET_ACCESS_KEY |
|
|
|
- S3_BUCKET=flowmoco-s3-backup-test |
|
|
|
- S3_PREFIX=postgres-test |
|
|
|
- POSTGRES_HOST=postgres |
|
|
|
- POSTGRES_DATABASE=user |
|
|
|
- POSTGRES_USER=user |
|
|
|
- POSTGRES_PASSWORD=12345 |
|
|
|
- POSTGRES_EXTRA_OPTS=--schema=public -b |