Skip to content

Commit

Permalink
ref fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jayengee committed Jul 17, 2024
1 parent 07d046a commit 1698283
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion databricks-s3-volume/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ resource "databricks_external_location" "volume" {
resource "databricks_catalog" "volume" {
count = var.create_catalog ? 1 : 0

depends_on = [databricks_external_location[0].volume]
depends_on = [databricks_external_location.volume[0]]
name = local.catalog_name
metastore_id = var.metastore_id
owner = var.catalog_owner
Expand Down
2 changes: 1 addition & 1 deletion databricks-s3-volume/outputs.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
output "dbx_unity_aws_role_arn" {
value = aws_iam_role.dbx_unity_aws_role.arn
value = aws_iam_role.dbx_unity_aws_role[0].arn
}

output "volume_specific_bucket_name" {
Expand Down

0 comments on commit 1698283

Please sign in to comment.