terraform-provider-pulsar icon indicating copy to clipboard operation
terraform-provider-pulsar copied to clipboard

Are there any plans to support deploying schema for a topic via terraform?

Open richardwilko opened this issue 4 years ago • 1 comments

Are there any plans to support deploying schema for a topic via terraform?

Community Note

  • Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
  • Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request
  • If you are interested in working on this issue or have submitted a pull request, please leave a comment

Description

New or Affected Resource(s)

  • pulsar_topic

Potential Terraform Configuration

resource "pulsar_topic" "sample-topic-1" {
  tenant     = "public"
  namespace  = "default"
  topic_type = "persistent"
  topic_name = "partition-topic"
  partitions = 4                     # partitions > 0 means this is a partition topic
  schema = {
      name = "schema1"
      schema_type = AVRO
      schema = file(schema_file.avsc)
  }
}

richardwilko avatar Jun 30 '20 09:06 richardwilko

Hi @richardwilko Thanks for open this issue. This is not in our plan. Mark it as help wanted for anyone interest to working on this.

jiazhai avatar Jul 02 '20 02:07 jiazhai