-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: using .env file in github action
Even if this exposes secrets and config variables, since they should only be mock variables used for local testing it is not a security risk. For production always use a github actions environment with secrets and variables.
- Loading branch information
1 parent
5f9c4da
commit e120269
Showing
3 changed files
with
19 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
AWS_DEFAULT_REGION=us-east-1 | ||
AWS_ENDPOINT_URL=http://localhost:4566 | ||
|
||
REDSHIFT_MASTER_USER=dwh_user | ||
REDSHIFT_MASTER_PASSWORD=123456789Test | ||
REDSHIFT_DB_NAME=streaming_db | ||
REDSHIFT_CLUSTER_NAME=redshift-cluster | ||
REDSHIFT_TABLE_NAME=user_health_data | ||
|
||
KINESIS_STREAM_NAME=kinesis-stream | ||
|
||
S3_BUCKET_NAME=firehose-raw-data |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -120,7 +120,6 @@ celerybeat.pid | |
*.sage.py | ||
|
||
# Environments | ||
.env | ||
.venv | ||
env/ | ||
venv/ | ||
|