Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2022 12:12 AM
Hi @Andrei Radulescu-Banu ,
I believe you should use ALL_PRIVILEGES:
resource "databricks_grants" "test" {
provider = databricks.workspace
catalog = databricks_catalog.test.name
grant {
principal = "account users"
privileges = ["ALL_PRIVILEGES"]
}
}if not, please try 'ALL'.
I did this in the past, but I've removed catalog creation from TF before pushing the code, so no history in repo.