Skip to content

Commit

Permalink
chore: expand dbx volume schema grants (#661)
Browse files Browse the repository at this point in the history
  • Loading branch information
jayengee authored Oct 17, 2024
1 parent d0f6ff4 commit 063136a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion databricks-s3-volume/grants.tf
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ resource "databricks_grant" "schema_r" {

schema = "${local.catalog_name}.${local.schema_name}"
principal = each.value
privileges = ["USE_SCHEMA"]
privileges = ["USE_SCHEMA", "SELECT", "EXECUTE"]
}

resource "databricks_grant" "schema_rw" {
Expand All @@ -48,6 +48,9 @@ resource "databricks_grant" "schema_rw" {
principal = each.value
privileges = [
"USE_SCHEMA",
"SELECT",
"EXECUTE",
"REFRESH",
"APPLY_TAG",
"CREATE_FUNCTION",
"CREATE_TABLE",
Expand Down

0 comments on commit 063136a

Please sign in to comment.