Skip to content

Commit

Permalink
msk/account-identity: Add acc api v2 email verifier consumer (#738)
Browse files Browse the repository at this point in the history
Consumer introduced in [this
PR](utilitywarehouse/account-platform#1540)
  • Loading branch information
Jarota authored Dec 19, 2024
1 parent 88a943e commit d88f571
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
7 changes: 7 additions & 0 deletions dev-aws/kafka-shared-msk/account-identity/account.tf
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,13 @@ module "account_identity_account_api_v2_customer_bill_writer" {
cert_common_name = "account-platform/account_api_v2_customer_bill_writer"
}

module "account_identity_account_api_v2_email_verifier" {
source = "../../../modules/tls-app"
consume_topics = [kafka_topic.account_identity_account_events_v2.name]
consume_groups = ["account-identity.account-api-v2-email-verifier"]
cert_common_name = "account-platform/account_api_v2_email_verifier"
}

module "account_identity_create_account_projector" {
source = "../../../modules/tls-app"
consume_topics = [kafka_topic.account_identity_account_events_v2.name, kafka_topic.account_identity_legacy_account_events.name
Expand Down
7 changes: 7 additions & 0 deletions prod-aws/kafka-shared-msk/account-identity/account.tf
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,13 @@ module "account_identity_account_api_v2_customer_bill_writer" {
cert_common_name = "account-platform/account_api_v2_customer_bill_writer"
}

module "account_identity_account_api_v2_email_verifier" {
source = "../../../modules/tls-app"
consume_topics = [kafka_topic.account_identity_account_events_v2.name]
consume_groups = ["account-identity.account-api-v2-email-verifier"]
cert_common_name = "account-platform/account_api_v2_email_verifier"
}

module "account_identity_account_number_seed_projector" {
source = "../../../modules/tls-app"
consume_topics = [kafka_topic.account_identity_account_unified_events.name]
Expand Down

0 comments on commit d88f571

Please sign in to comment.