Skip to content

Commit

Permalink
Merge pull request #2 from data-platform-hq/fix/module_update
Browse files Browse the repository at this point in the history
fix: module update
  • Loading branch information
owlleg6 authored Nov 26, 2024
2 parents ec0f7f0 + 36767b8 commit 3230cbd
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 8 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ Terraform module for creation AWS Databricks Workspace
| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.8 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.0 |
| <a name="requirement_databricks"></a> [databricks](#requirement\_databricks) | >= 1.55 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | ~>5.0 |
| <a name="requirement_databricks"></a> [databricks](#requirement\_databricks) | ~>1.0 |
| <a name="requirement_time"></a> [time](#requirement\_time) | ~> 0.11 |

## Providers

| Name | Version |
|------|---------|
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 5.0 |
| <a name="provider_databricks"></a> [databricks](#provider\_databricks) | >= 1.55 |
| <a name="provider_aws"></a> [aws](#provider\_aws) | ~>5.0 |
| <a name="provider_databricks"></a> [databricks](#provider\_databricks) | ~>1.0 |
| <a name="provider_time"></a> [time](#provider\_time) | ~> 0.11 |

## Modules
Expand Down Expand Up @@ -76,6 +76,7 @@ Terraform module for creation AWS Databricks Workspace
| <a name="output_iam_role"></a> [iam\_role](#output\_iam\_role) | The IAM role created for cross-account access to the Databricks workspace |
| <a name="output_storage"></a> [storage](#output\_storage) | The storage configuration for the DBFS bucket associated with the workspace |
| <a name="output_workspace"></a> [workspace](#output\_workspace) | The Databricks workspace resource that has been created |
| <a name="output_workspace_id"></a> [workspace\_id](#output\_workspace\_id) | The unique identifier of the Databricks workspace. |
| <a name="output_workspace_url"></a> [workspace\_url](#output\_workspace\_url) | The URL for accessing the Databricks workspace |
<!-- END_TF_DOCS -->

Expand Down
2 changes: 1 addition & 1 deletion modules/privatelink/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ terraform {
required_providers {
databricks = {
source = "databricks/databricks"
version = ">= 1.55"
version = "~>1.0"
}
}
}
5 changes: 5 additions & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,8 @@ output "workspace_url" {
value = databricks_mws_workspaces.this.workspace_url
description = "The URL for accessing the Databricks workspace"
}

output "workspace_id" {
value = databricks_mws_workspaces.this.workspace_id
description = "The unique identifier of the Databricks workspace."
}
1 change: 0 additions & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@ variable "iam_cross_account_workspace_role_config" {
})
default = {}
}

################################################################################
# Storage root bucket config
################################################################################
Expand Down
4 changes: 2 additions & 2 deletions versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = ">= 5.0"
version = "~>5.0"
}
databricks = {
source = "databricks/databricks"
version = ">= 1.55"
version = "~>1.0"
}
time = {
source = "hashicorp/time"
Expand Down

0 comments on commit 3230cbd

Please sign in to comment.