Skip to content

Commit

Permalink
msk/account-identity: Add moved block to properly fix typo (#728)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jarota authored Dec 13, 2024
1 parent 94b5f07 commit bac1a92
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions dev-aws/kafka-shared-msk/account-identity/account.tf
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,11 @@ resource "kafka_topic" "account_identity_account_bill_writes_public" {
replication_factor = 3
}

moved {
from = kafka_topic.account_identity_accunt_bill_writes_public
to = kafka_topic.account_identity_account_bill_writes_public
}

module "account_identity_account_atomic_v1_indexer" {
source = "../../../modules/tls-app"
consume_topics = [kafka_topic.account_identity_account_atomic_v1.name]
Expand Down
5 changes: 5 additions & 0 deletions prod-aws/kafka-shared-msk/account-identity/account.tf
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,11 @@ resource "kafka_topic" "account_identity_account_bill_writes_public" {
replication_factor = 3
}

moved {
from = kafka_topic.account_identity_accunt_bill_writes_public
to = kafka_topic.account_identity_account_bill_writes_public
}

module "account_identity_account_api_account_atomic_producer" {
source = "../../../modules/tls-app"
produce_topics = [kafka_topic.account_identity_account_atomic_v1.name]
Expand Down

0 comments on commit bac1a92

Please sign in to comment.