Skip to content

Commit

Permalink
isolation mode
Browse files Browse the repository at this point in the history
  • Loading branch information
alldoami committed Aug 15, 2024
1 parent fd7cd45 commit c82bd64
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion databricks-catalog-external-location/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,8 @@ resource "databricks_storage_credential" "external" {
aws_iam_role {
role_arn = aws_iam_role.databricks_external_location_iam_role.arn
}
comment = "Managed by Terraform"
isolation_mode = "ISOLATION_MODE_ISOLATED"
comment = "Managed by Terraform"
}

## user/group Grants to an external storage
Expand All @@ -150,6 +151,7 @@ resource "databricks_external_location" "external_locations" {
name = local.external_location_name
url = "s3://${local.bucket_name}"
credential_name = databricks_storage_credential.external.id
isolation_mode = "ISOLATION_MODE_ISOLATED"
comment = "Managed by Terraform"
}

Expand Down

0 comments on commit c82bd64

Please sign in to comment.