Skip to content

Commit

Permalink
fix: remove non-applicable permission from dbx volume grant
Browse files Browse the repository at this point in the history
  • Loading branch information
jayengee committed Dec 4, 2024
1 parent 693d3da commit 0ef7122
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion databricks-s3-volume/grants.tf
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ resource "databricks_grant" "volume_r" {
for_each = toset(var.volume_r_grant_principals)
volume = databricks_volume.volume.id
principal = each.value
privileges = ["READ_VOLUME", "READ_FILES"]
privileges = ["READ_VOLUME"]
}

resource "databricks_grant" "volume_rw" {
Expand Down

0 comments on commit 0ef7122

Please sign in to comment.