From 730a6d50328c566f93b3161599d7fa4390d5a494 Mon Sep 17 00:00:00 2001 From: Jason Ng Date: Thu, 22 Aug 2024 13:11:01 -0700 Subject: [PATCH 1/4] feat: trigger release and fix docs (#629) --- databricks-cluster-log-permissions/README.md | 1 + databricks-cluster-log-permissions/outputs.tf | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/databricks-cluster-log-permissions/README.md b/databricks-cluster-log-permissions/README.md index 6fe9a3dd..521a53f9 100644 --- a/databricks-cluster-log-permissions/README.md +++ b/databricks-cluster-log-permissions/README.md @@ -63,4 +63,5 @@ No modules. | [default\_logging\_role\_arn](#output\_default\_logging\_role\_arn) | ARN of the AWS IAM role created for default logs access | | [rw\_logging\_role\_arn](#output\_rw\_logging\_role\_arn) | ARN of the AWS IAM role created for read and write logs access | | [rw\_logging\_role\_instance\_profile\_arn](#output\_rw\_logging\_role\_instance\_profile\_arn) | ARN of the AWS instance profile created for read and write logs access | +| [rw\_dbx\_instance\_profile\_id](#output\_dbx\_instance\_profile\_id) | ID of the Databricks instance profile created for writing logs | \ No newline at end of file diff --git a/databricks-cluster-log-permissions/outputs.tf b/databricks-cluster-log-permissions/outputs.tf index c47f979b..45ff7e9e 100644 --- a/databricks-cluster-log-permissions/outputs.tf +++ b/databricks-cluster-log-permissions/outputs.tf @@ -14,6 +14,6 @@ output "rw_logging_role_instance_profile_arn" { } output "dbx_instance_profile_id"{ - description = "ID of the Databricks instance profile create for writing logs" + description = "ID of the Databricks instance profile created for writing logs" value = databricks_instance_profile.cluster_log_cluster.id } \ No newline at end of file From a73e7fafd2c9aa32eedb12b346876c3e7f914156 Mon Sep 17 00:00:00 2001 From: "czi-github-helper[bot]" <95879977+czi-github-helper[bot]@users.noreply.github.com> Date: Thu, 22 Aug 2024 20:13:43 +0000 Subject: [PATCH 2/4] chore(main): release 0.79.0 (#630) Co-authored-by: czi-github-helper[bot] <95879977+czi-github-helper[bot]@users.noreply.github.com> --- CHANGELOG.md | 7 +++++++ version.txt | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d7ef78d..8204a76e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.79.0](https://github.com/chanzuckerberg/cztack/compare/v0.78.2...v0.79.0) (2024-08-22) + + +### Features + +* trigger release and fix docs ([#629](https://github.com/chanzuckerberg/cztack/issues/629)) ([730a6d5](https://github.com/chanzuckerberg/cztack/commit/730a6d50328c566f93b3161599d7fa4390d5a494)) + ## [0.78.2](https://github.com/chanzuckerberg/cztack/compare/v0.78.1...v0.78.2) (2024-08-21) diff --git a/version.txt b/version.txt index e11834a1..870aec4a 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -0.78.2 +0.79.0 From 44b9e6b239d32c3698b001ec9aba4027db32de9c Mon Sep 17 00:00:00 2001 From: Allison Doami Date: Tue, 27 Aug 2024 10:56:23 -0700 Subject: [PATCH 3/4] feat: Catalog prefix option (#631) --- databricks-catalog-external-location/catalogs.tf | 2 +- databricks-catalog-external-location/variables.tf | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/databricks-catalog-external-location/catalogs.tf b/databricks-catalog-external-location/catalogs.tf index 4616bb68..b7e55248 100644 --- a/databricks-catalog-external-location/catalogs.tf +++ b/databricks-catalog-external-location/catalogs.tf @@ -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.catalog_prefix != "" ? each.value.catalog_prefix : each.value.name}" comment = "this catalog is managed by terraform" isolation_mode = each.value.isolation_mode owner = each.value.owner diff --git a/databricks-catalog-external-location/variables.tf b/databricks-catalog-external-location/variables.tf index 2f72c7ff..e561bee4 100644 --- a/databricks-catalog-external-location/variables.tf +++ b/databricks-catalog-external-location/variables.tf @@ -28,5 +28,6 @@ variable "catalogs" { all_privileges_groups = list(string) read_privileges_groups = optional(list(string), []) write_privileges_groups = optional(list(string), []) + catalog_prefix = optional(string, "") })) } From e3974b7ddfce1d305b770716dd0cde2ef08d88e0 Mon Sep 17 00:00:00 2001 From: "czi-github-helper[bot]" <95879977+czi-github-helper[bot]@users.noreply.github.com> Date: Tue, 27 Aug 2024 11:48:17 -0700 Subject: [PATCH 4/4] chore(main): release 0.80.0 (#632) --- CHANGELOG.md | 7 +++++++ version.txt | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8204a76e..5929ccb9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.80.0](https://github.com/chanzuckerberg/cztack/compare/v0.79.0...v0.80.0) (2024-08-27) + + +### Features + +* Catalog prefix option ([#631](https://github.com/chanzuckerberg/cztack/issues/631)) ([44b9e6b](https://github.com/chanzuckerberg/cztack/commit/44b9e6b239d32c3698b001ec9aba4027db32de9c)) + ## [0.79.0](https://github.com/chanzuckerberg/cztack/compare/v0.78.2...v0.79.0) (2024-08-22) diff --git a/version.txt b/version.txt index 870aec4a..b53d377d 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -0.79.0 +0.80.0