Skip to content

Commit

Permalink
fix: missing dollar sign for text interpolation
Browse files Browse the repository at this point in the history
  • Loading branch information
jayengee committed Aug 19, 2024
1 parent bed920c commit a10f921
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion databricks-catalog-external-location/catalogs.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
resource "databricks_catalog" "catalog" {
for_each = { for idx, catalog in var.catalogs : catalog.name => catalog }
name = each.value.name
storage_root = "s3://${module.catalog_bucket.name}/{each.value.name}"
storage_root = "s3://${module.catalog_bucket.name}/${each.value.name}"
comment = "this catalog is managed by terraform"
isolation_mode = each.value.isolation_mode
owner = each.value.owner
Expand Down

0 comments on commit a10f921

Please sign in to comment.