terraform-provider-kafka
terraform-provider-kafka copied to clipboard
Terraform provider for managing Apache Kafka Topics + ACLs
Bumps [github.com/Shopify/sarama](https://github.com/Shopify/sarama) from 1.34.1 to 1.36.0. Release notes Sourced from github.com/Shopify/sarama's releases. Version 1.36.0 (2022-08-11) What's Changed :tada: New Features / Improvements feat: add option to propagate OffsetOutOfRange error by...
As per the link https://github.com/aws/aws-msk-iam-auth#details AWS_MSK_IAM can be used as one of sasl_mechanism for create topic using IAM role. However as per the terraform documentation for Kafka provider it does...
AWS MSK provides a custom authentication method that is fully integrated with AWS IAM: https://docs.aws.amazon.com/msk/latest/developerguide/iam-access-control.html This auth method has a big advantage for AWS customers: it allows to manage auth/authz...
I'm trying out this module to update Kafka topic configuration (increase number of partitions, change retention period), the `terraform plan` command works as expected and displays the expected plan. When...
Bumps [github.com/hashicorp/terraform-plugin-sdk/v2](https://github.com/hashicorp/terraform-plugin-sdk) from 2.17.0 to 2.20.0. Release notes Sourced from github.com/hashicorp/terraform-plugin-sdk/v2's releases. v2.20.0 NOTES: helper/logging: Existing NewTransport() is now deprecated in favour of using the new NewLoggingHTTPTransport() or NewSubsystemLoggingHTTPTransport() (#1006)...
Bumps [github.com/hashicorp/terraform-plugin-docs](https://github.com/hashicorp/terraform-plugin-docs) from 0.10.1 to 0.13.0. Release notes Sourced from github.com/hashicorp/terraform-plugin-docs's releases. v0.13.0 ENHANCEMENTS: schemamd: Nested attributes are now correctly grouped in "optional", "required" and "read-only" (#163). BUG FIXES: template...
Hi guys, I was trying create the topics in AWS MSK Cluster, but show this error below for me. ``` Error: kafka: client has run out of available brokers to...
previously there is no ability to create **default** "kafka_quotas" for any user/client https://kafka.apache.org/26/documentation.html#quotas > It is possible to set default quotas for each (user, client-id), user or client-id group by...
I might be doing something stupid, but: ``` required_providers { ... kafka = { source = "Mongey/kafka" version = "0.4.3" } } ``` ``` provider "kafka" { bootstrap_servers = split(",",...
Closes #237 When the ACL has already been removed from kafka, and terraform destroy is executed, the error occurs: ``` Error: There were no acls matching this filter ``` This...