diff --git a/airbyte-tests/src/automaticMigrationAcceptanceTest/java/io/airbyte/test/automaticMigrationAcceptance/MigrationAcceptanceTest.java b/airbyte-tests/src/automaticMigrationAcceptanceTest/java/io/airbyte/test/automaticMigrationAcceptance/MigrationAcceptanceTest.java index 6dc38ad7db7f..3d606392bc97 100644 --- a/airbyte-tests/src/automaticMigrationAcceptanceTest/java/io/airbyte/test/automaticMigrationAcceptance/MigrationAcceptanceTest.java +++ b/airbyte-tests/src/automaticMigrationAcceptanceTest/java/io/airbyte/test/automaticMigrationAcceptance/MigrationAcceptanceTest.java @@ -348,6 +348,11 @@ private Map getEnvironmentVariables(String version) { env.put("API_URL", "http://localhost:7001/api/v1/"); env.put("TEMPORAL_HOST", "airbyte-temporal:7233"); env.put("INTERNAL_API_HOST", "airbyte-server:7001"); + env.put("S3_LOG_BUCKET", ""); + env.put("S3_LOG_BUCKET_REGION", ""); + env.put("AWS_ACCESS_KEY_ID", ""); + env.put("AWS_SECRET_ACCESS_KEY", ""); + env.put("GCP_STORAGE_BUCKET", ""); return env; } diff --git a/airbyte-tests/src/automaticMigrationAcceptanceTest/resources/docker-compose-migration-test-second-run.yaml b/airbyte-tests/src/automaticMigrationAcceptanceTest/resources/docker-compose-migration-test-second-run.yaml index f075eca99bda..85a254fef3d8 100644 --- a/airbyte-tests/src/automaticMigrationAcceptanceTest/resources/docker-compose-migration-test-second-run.yaml +++ b/airbyte-tests/src/automaticMigrationAcceptanceTest/resources/docker-compose-migration-test-second-run.yaml @@ -47,6 +47,11 @@ services: - AIRBYTE_VERSION=${VERSION} - AIRBYTE_ROLE=${AIRBYTE_ROLE:-} - TEMPORAL_HOST=${TEMPORAL_HOST} + - S3_LOG_BUCKET=${S3_LOG_BUCKET} + - S3_LOG_BUCKET_REGION=${S3_LOG_BUCKET_REGION} + - AWS_ACCESS_KEY_ID=${AWS_ACCESS_KEY_ID} + - AWS_SECRET_ACCESS_KEY=${AWS_SECRET_ACCESS_KEY} + - GCP_STORAGE_BUCKET=${GCP_STORAGE_BUCKET} ports: - 7001:8001 volumes: