-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into adele-remove-one-more-feature-flag-instance
- Loading branch information
Showing
10 changed files
with
277 additions
and
197 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
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
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
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 |
---|---|---|
|
@@ -19,10 +19,12 @@ TEST_EMAIL_RECIPIENT="" | |
# You only need one of them configured at a time; in dev, you probably want to use Nodemailer, which uses a | ||
# regular SMTP server (e.g. from Gmail). See README.md for more advice on how to configure this. | ||
|
||
# AWS SES: | ||
AWS_ACCESS_KEY_ID= | ||
AWS_SECRET_ACCESS_KEY= | ||
AWS_DEFAULT_REGION="${AWS_DEFAULT_REGION:-us-west-2}" | ||
# AWS SDK configuration. test / test is used for localstack | ||
AWS_ACCESS_KEY_ID=test | ||
AWS_SECRET_ACCESS_KEY=test | ||
AWS_DEFAULT_REGION="us-west-2" | ||
|
||
# AWS SES | ||
NOTIFICATIONS_EMAIL=[email protected] | ||
|
||
# Email Server: | ||
|
@@ -44,5 +46,11 @@ DATA_DIR="./data" | |
# S3 bucket for ARPA Audit reports | ||
AUDIT_REPORT_BUCKET=arpa-audit-reports | ||
|
||
# SQS queue for grants-ingest events | ||
# SQS queue for grants-ingest events and arpa events | ||
GRANTS_INGEST_EVENTS_QUEUE_URL="http://localhost:4566/000000000000/grants-ingest-events" | ||
ARPA_AUDIT_REPORT_SQS_QUEUE_URL="http://sqs.us-west-2.localhost.localstack.cloud:4566/000000000000/arpa-queue" | ||
|
||
# for setting up the worker processes to run locally over localstack | ||
TASK_QUEUE_URL="http://sqs.us-west-2.localhost.localstack.cloud:4566/000000000000/arpa-queue" | ||
# if running locally, this will need to be localhost | ||
LOCALSTACK_HOSTNAME=localstack |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
output "website_cloudfront_distribution_id" { | ||
description = "The ID of the CloudFront distribution serving the GOST website." | ||
value = module.website.cloudfront_distribution_id | ||
} |
Oops, something went wrong.