Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-06-2022 03:01 PM
Hi @Avi Edri ,
I can see from the screen that you are using id = "any file/", it seems to be related to the import:
can you try the below:
resource "databricks_sql_permissions" "any_file" {
any_file = true
privilege_assignments {
principal = "group-name"
privileges = ["SELECT"]
}
privilege_assignments {
principal = "group-name2"
privileges = ["MODIFY", "SELECT"]
}
}You can also share your terraform code.
thanks,
Pat