Skip to content

Commit

Permalink
fix: msk output definition
Browse files Browse the repository at this point in the history
  • Loading branch information
omerurhan committed Feb 11, 2025
1 parent cfd18e4 commit c41d538
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/aws-msk-apache-kafka-cluster-master/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,13 @@ output "bootstrap_brokers_public_sasl_scram" {
}

output "username" {
value = var.client_sasl_scram_enabled ? "msk" : null
# this might need to change later on, currently hardcoded in the module
value = "msk"
description = ""
}

output "password" {
value = random_password.password[0].result
value = var.client_sasl_scram_enabled ? random_password.password[0].result : null
description = ""
}

Expand Down

0 comments on commit c41d538

Please sign in to comment.