Attach multiple libraries to a cluster terraforming Databricks

1.1k Views Asked by At

I'm currently trying to attach more than one maven artifact to my terraform configuration of a cluster.
In the documentation, nothing says it can't work. It is only specified that one type of library must correspond to one configuration block.

How can we add more than one artifact in my terraform configuration ?

2

There are 2 best solutions below

2
On BEST ANSWER

If finally did it by duplicating my configuration blocks.

library {
  maven {
    coordinates = "..."
  }
}
library {
  maven {
    coordinates = "..."
  }
}
0
On

You could use a dynamic library block which will repeat it for you. An example for Python packages where listOfPythonPackages is a variable list.

  dynamic "library" {
    for_each = toset(var.listOfPythonPackages)
    content {
      pypi {
        package = library.value
      }
    }
  }