How to attach multiple libraries to a cluster terraform in Databricks
I'm currently trying to attach more than one maven artifact to my terraform configuration of a cluster.How can we add more than one artifact in my terraform configuration ?
- 4531 Views
- 3 replies
- 2 kudos
Latest Reply
Hi @KunalGaurav,This can be done by using a dynamic configuration block inside your databricks_cluster resource definition.In variable.tf make a library block as:-variable "listOfMavenPackages" { type = list(string) default = [ "com.google.gua...
- 2 kudos