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
parent
commit
2ce782a258
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 24
      postgres-backup-s3/integration-tests.test.yml

24
postgres-backup-s3/integration-tests.test.yml

@ -9,18 +9,18 @@ services:
sut: sut:
build: build:
context: . context: .
command: 'sh integration-tests.sh'
command: 'sh'
depends_on: depends_on:
- postgres - postgres
environment: environment:
PGPASSWORD: 12345
S3_REGION: "eu-west-2"
S3_ACCESS_KEY_ID: "AKIASAH3OBJUZI7R3KIM"
S3_SECRET_ACCESS_KEY: "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"
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
Loading…
Cancel
Save