Skip to content

Commit

Permalink
fix: CDI-3508 - Databricks volume bucket name output (#676)
Browse files Browse the repository at this point in the history
* fix: databricks volume bucket name output

* readme update
  • Loading branch information
jayengee authored Nov 6, 2024
1 parent 02ee4a7 commit c522ec8
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
Binary file modified .DS_Store
Binary file not shown.
Binary file added .github/.DS_Store
Binary file not shown.
5 changes: 4 additions & 1 deletion databricks-s3-volume/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,5 +72,8 @@
|------|-------------|
| <a name="output_dbx_unity_aws_role_arn"></a> [dbx\_unity\_aws\_role\_arn](#output\_dbx\_unity\_aws\_role\_arn) | n/a |
| <a name="output_volume_path"></a> [volume\_path](#output\_volume\_path) | n/a |
| <a name="output_volume_specific_bucket_name"></a> [volume\_specific\_bucket\_name](#output\_volume\_specific\_bucket\_name) | n/a |
| <a name="output_volume_bucket_name"></a> [volume\_bucket\_name](#output\_volume\_bucket\_name) | n/a |
| <a name="output_catalog_name"></a> [catalog\_name](#output\_catalog\_name) | n/a |
| <a name="output_schema_name"></a> [schema\_name](#output\_schema\_name) | n/a |
| <a name="output_volume_name"></a> [volume\_name](#output\_volume\_name) | n/a |
<!-- END -->
4 changes: 2 additions & 2 deletions databricks-s3-volume/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ output "dbx_unity_aws_role_arn" {
value = length(aws_iam_role.dbx_unity_aws_role) > 0 ? aws_iam_role.dbx_unity_aws_role[0].arn : null
}

output "volume_specific_bucket_name" {
value = length(module.databricks_bucket) > 0 ? module.databricks_bucket[0].name : null
output "volume_bucket_name" {
value = local.bucket_name
}

output "volume_path" {
Expand Down

0 comments on commit c522ec8

Please sign in to comment.