Skip to content

Commit

Permalink
[A&I] update typo (#697)
Browse files Browse the repository at this point in the history
  • Loading branch information
denisnikulin authored Nov 13, 2024
1 parent 6fdd9fb commit 54c9a5e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions dev-aws/kafka-shared-msk/account-identity/account.tf
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ resource "kafka_topic" "account_identity_to_anonymize_events" {
replication_factor = 3
}

resource "kafka_topic" "account_identity_accunt_bill_writes_public" {
resource "kafka_topic" "account_identity_account_bill_writes_public" {
config = {
"cleanup.policy" = "compact"
# allow not compacted keys maximum for 7 days
Expand Down Expand Up @@ -190,14 +190,14 @@ module "account_identity_account_api_v2_dispatcher" {

module "account_identity_account_api_v2" {
source = "../../../modules/tls-app"
produce_topics = [kafka_topic.account_identity_accunt_bill_writes_public.name]
produce_topics = [kafka_topic.account_identity_account_bill_writes_public.name]
cert_common_name = "account-platform/account_api_v2"
}


module "account_identity_account_api_v2_customer_bill_writer" {
source = "../../../modules/tls-app"
produce_topics = [kafka_topic.account_identity_accunt_bill_writes_public.name]
produce_topics = [kafka_topic.account_identity_account_bill_writes_public.name]
cert_common_name = "account-platform/account_api_v2_customer_bill_writer"
}

Expand Down
6 changes: 3 additions & 3 deletions prod-aws/kafka-shared-msk/account-identity/account.tf
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ resource "kafka_topic" "account_identity_analytics_bill_change_events" {
replication_factor = 3
}

resource "kafka_topic" "account_identity_accunt_bill_writes_public" {
resource "kafka_topic" "account_identity_account_bill_writes_public" {
config = {
"cleanup.policy" = "compact"
# allow not compacted keys maximum for 7 days
Expand Down Expand Up @@ -191,13 +191,13 @@ module "account_identity_account_api_v2_dispatcher" {

module "account_identity_account_api_v2" {
source = "../../../modules/tls-app"
produce_topics = [kafka_topic.account_identity_accunt_bill_writes_public.name]
produce_topics = [kafka_topic.account_identity_account_bill_writes_public.name]
cert_common_name = "account-platform/account_api_v2"
}

module "account_identity_account_api_v2_customer_bill_writer" {
source = "../../../modules/tls-app"
produce_topics = [kafka_topic.account_identity_accunt_bill_writes_public.name]
produce_topics = [kafka_topic.account_identity_account_bill_writes_public.name]
cert_common_name = "account-platform/account_api_v2_customer_bill_writer"
}

Expand Down

0 comments on commit 54c9a5e

Please sign in to comment.