Сan't use "terraform-proveder-kafka" from terraform registry #330
Unanswered
LORSfrom95
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi. I'm getting the following errof when running "terraform init": "The host "registry.terraform.io" given in in provider source address "registry.terraform.io/mongey/kafka" does not offer a Terraform provider registry." Any idea what's the problem?
Here is my config:
terraform {
required_providers {
kafka = {
source = "Mongey/kafka"
version = "0.5.3"
}
}
}
provider "kafka" {
Configuration options
bootstrap_servers = ["var.server"]
tls_enabled = "false"
sasl_mechanism = "scram-sha512"
sasl_username = var.username
sasl_password = var.password
}
Beta Was this translation helpful? Give feedback.
All reactions