-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.template
More file actions
30 lines (24 loc) · 990 Bytes
/
Copy path.env.template
File metadata and controls
30 lines (24 loc) · 990 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Divvy Bikes Data Engineering Project - Environment Variables Template
# Copy this file to .env and fill in your actual values
# NEVER commit .env files to version control
# AWS Configuration
AWS_REGION=ap-southeast-2
AWS_DEFAULT_REGION=ap-southeast-2
# Redshift Configuration
REDSHIFT_ADMIN_USERNAME=admin
REDSHIFT_ADMIN_PASSWORD="your_secure_password_here"
REDSHIFT_DATABASE_NAME=divvy
REDSHIFT_WORKGROUP=divvybikes-dev
REDSHIFT_NAMESPACE=divvybikes-dev
# Redshift Connection Details (these will be populated after Terraform deployment)
REDSHIFT_ENDPOINT=your_redshift_endpoint_here
REDSHIFT_PORT=5439
# S3 Bucket Names (these will be populated after Terraform deployment)
BRONZE_BUCKET=divvybikes-dev-bronze-96wb3c9c
SILVER_BUCKET=divvybikes-dev-silver-96wb3c9c
GOLD_BUCKET=divvybikes-dev-gold-96wb3c9c
# Airflow Configuration
AIRFLOW_UID=50000
AIRFLOW_PROJ_DIR=.
# Terraform Variables (needed for terraform deployments)
TF_VAR_redshift_admin_password="your_secure_password_here"