Terraform - Install egg file from S3
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-18-2023 03:11 AM
I am looking to install Python Egg files on all my clusters. The egg file is located in a S3 location. I tried using the following code which didn't work
resource "databricks_dbfs_file" "app" {
source = "${S3_Path}/foo.egg"
path = "/FileStore/foo.egg"
}
resource "databricks_library" "app" {
cluster_id = databricks_cluster.this.id
egg = databricks_dbfs_file.app.dbfs_path
}
Can someone help me with this?
Thanks in advance!