mirror of
https://github.com/aljazceru/IngestRSS.git
synced 2026-01-16 12:34:19 +01:00
26 lines
692 B
Bash
26 lines
692 B
Bash
# AWS Configuration
|
|
AWS_REGION=us-east-$
|
|
AWS_ACCOUNT_ID=$$$$$$$$$
|
|
|
|
# Access keys (only use these for local development, NEVER in production)
|
|
AWS_ACCESS_KEY_ID=$$$$$$$$$
|
|
AWS_SECRET_ACCESS_KEY=$$$$$$$$$
|
|
|
|
# Resource Names (without ARNs or full URLs)
|
|
LAMBDA_FUNCTION_NAME=rss-feed-processor
|
|
LAMBDA_EXECUTION_ROLE_NAME=rss-feed-processor-role
|
|
S3_BUCKET_NAME=rss-feed-processor-bucket
|
|
DYNAMODB_TABLE_NAME=rss-feeds-table
|
|
SQS_QUEUE_NAME=rss-feed-queue
|
|
S3_LAYER_BUCKET_NAME=rss-feed-processor-layers
|
|
|
|
# RSS Feed Processing Configuration
|
|
MAX_ARTICLES_PER_FEED=10
|
|
FEED_PROCESSING_TIMEOUT=90
|
|
|
|
# Logging Configuration
|
|
LOG_LEVEL=INFO
|
|
|
|
# Other Application Settings
|
|
APP_NAME=RSS Feed Processor
|
|
VERSION=1.0.0 |