We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@sappusaketh @Mongey
Below code is working for sasl/scram enabled clusters. But for TLS clusters getting error
Error: kafka: client has run out of available brokers to talk to: 3 errors occurred:
provider "kafka" { bootstrap_servers = var.bootstrap_brokers sasl_username = var.scram_enabled ? jsondecode(one(data.aws_secretsmanager_secret_version.msk_key_version[].secret_string))["username"] : null sasl_password = var.scram_enabled ? jsondecode(one(data.aws_secretsmanager_secret_version.msk_key_version[].secret_string))["password"] : null sasl_mechanism = var.scram_enabled ? var.sasl_mechanism : null }
terraform { required_version = "~> 1.0.11"
required_providers { kafka = { source = "Mongey/kafka" version = "0.5.4" } aws = { source = "hashicorp/aws" version = "~> 5.26" } } }
with 0.5.4 version able to create to topics for TLS enabled clusters
The text was updated successfully, but these errors were encountered:
No branches or pull requests
@sappusaketh @Mongey
Below code is working for sasl/scram enabled clusters. But for TLS clusters getting error
Error: kafka: client has run out of available brokers to talk to: 3 errors occurred:
provider "kafka" {
bootstrap_servers = var.bootstrap_brokers
sasl_username = var.scram_enabled ? jsondecode(one(data.aws_secretsmanager_secret_version.msk_key_version[].secret_string))["username"] : null
sasl_password = var.scram_enabled ? jsondecode(one(data.aws_secretsmanager_secret_version.msk_key_version[].secret_string))["password"] : null
sasl_mechanism = var.scram_enabled ? var.sasl_mechanism : null
}
terraform {
required_version = "~> 1.0.11"
required_providers {
kafka = {
source = "Mongey/kafka"
version = "0.5.4"
}
aws = {
source = "hashicorp/aws"
version = "~> 5.26"
}
}
}
with 0.5.4 version able to create to topics for TLS enabled clusters
The text was updated successfully, but these errors were encountered: