Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2024 12:50 AM - edited 06-28-2024 12:51 AM
After creating the databricks_metastore resource, can you run databricks_grants? like this
resource "databricks_grants" "foo" {
depends_on = databricks_metastore.foo
metastore = databricks_metastore.foo.id
grant {
principal = <your service principal>
privileges = ["CREATE_EXTERNAL_LOCATION", <other priviliges>]
}
}