generated from CDCgov/template
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial code for email service with few refractor
- Loading branch information
1 parent
28d42ae
commit 94dec41
Showing
5 changed files
with
21 additions
and
42 deletions.
There are no files selected for viewing
29 changes: 0 additions & 29 deletions
29
DataCompareESender/src/main/java/gov/cdc/datacompareesender/configuration/AwsConfig.java
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
...reESender/src/main/java/gov/cdc/datacompareesender/configuration/KafkaConsumerConfig.java
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 |
---|---|---|
@@ -1,16 +1,25 @@ | ||
spring: | ||
kafka: | ||
bootstrap-servers: ${KAFKA_BOOTSTRAP_SERVERS} | ||
bootstrap-servers: ${KAFKA_BOOTSTRAP_SERVER} | ||
group-id: data-compare-email-group | ||
|
||
kafka: | ||
topic: | ||
data-compare-topic: ${KAFKA_TOPIC_NAME} | ||
data-compare-topic: data_comparing_email | ||
|
||
aws: | ||
region: ${AWS_REGION} | ||
ses: | ||
source-email: ${AWS_SES_SOURCE_EMAIL} | ||
auth: | ||
static: | ||
key_id: ${AWS_KEY_ID:NA} | ||
access_key: ${AWS_ACCESS_KEY:NA} | ||
token: ${AWS_TOKEN:NA} | ||
profile: | ||
profile_name: ${AWS_PROFILE:NA} | ||
iam: | ||
enabled: ${AWS_IAM:false} | ||
s3: | ||
bucket-name: ${AWS_S3_BUCKET_NAME} | ||
url-expiration-hours: 48 | ||
bucket-name: eq-data-compare | ||
region: ${S3_REGION:NA} | ||
url-expiration-hours: 48 | ||
ses: | ||
source-email: [email protected] |