Anyone successfully deploy HDInsights-kafka with t...
# azure
a
Anyone successfully deploy HDInsights-kafka with the pulumi azure native? If so, could you share your pulumi code? I'm getting the error: "Internal error. Errors:The request payload is invalid.". Looking at the pulumi details and comparing it to an ARM export of an existing HDInsights-kafka cluster, I am not seeing a difference. Thanks
My hdinsights pulumi code.
Figured it out. I needed to add to the cluster_definition section this block:
Copy code
configurations={
    "gateway": {
      "restAuthCredential.isEnabled": True,
      "restAuthCredential.username": "clusteruser",
      "restAuthCredential.password": password
    }
}
Hopefully, Azure will update the error to be more descriptive.