Skip to content

Commit

Permalink
Account exceptions processor - read creation events (#701)
Browse files Browse the repository at this point in the history
  • Loading branch information
matiit authored Nov 14, 2024
1 parent eae7935 commit 16e4437
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions dev-aws/kafka-shared-msk/account-identity/exceptions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -198,8 +198,8 @@ module "account_identity_legacy_supply_address_relay" {

module "account_identity_exceptions_processor" {
source = "../../../modules/tls-app"
consume_topics = [kafka_topic.account_identity_account_exceptions_v1.name]
consume_groups = ["account-identity.account-exceptions-processor-source"]
consume_topics = [kafka_topic.account_identity_account_exceptions_v1.name, kafka_topic.account_identity_account_events_v2.name]
consume_groups = ["account-identity.account-exceptions-processor-source", "account-identity.account-exceptions-processor-creation-events"]
produce_topics = [kafka_topic.account_identity_account_exceptions_events.name]
cert_common_name = "account-platform/exceptions_processor"
}
Expand Down
4 changes: 2 additions & 2 deletions prod-aws/kafka-shared-msk/account-identity/exceptions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ module "account_identity_land_registry_indexer" {

module "account_identity_exceptions_processor" {
source = "../../../modules/tls-app"
consume_topics = [kafka_topic.account_identity_account_exceptions_v1.name]
consume_groups = ["account-identity.account-exceptions-processor-source"]
consume_topics = [kafka_topic.account_identity_account_exceptions_v1.name, kafka_topic.account_identity_account_events_v2.name]
consume_groups = ["account-identity.account-exceptions-processor-source", "account-identity.account-exceptions-processor-creation-events"]
produce_topics = [kafka_topic.account_identity_account_exceptions_events.name]
cert_common_name = "account-platform/exceptions_processor"
}
Expand Down

0 comments on commit 16e4437

Please sign in to comment.