Skip to content

Commit 36767b8

Browse files
MyroslavLevchykMyroslavLevchyk
authored andcommitted
fix: module update
1 parent ec0f7f0 commit 36767b8

File tree

5 files changed

+13
-8
lines changed

5 files changed

+13
-8
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@ Terraform module for creation AWS Databricks Workspace
99
| Name | Version |
1010
|------|---------|
1111
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.8 |
12-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.0 |
13-
| <a name="requirement_databricks"></a> [databricks](#requirement\_databricks) | >= 1.55 |
12+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | ~>5.0 |
13+
| <a name="requirement_databricks"></a> [databricks](#requirement\_databricks) | ~>1.0 |
1414
| <a name="requirement_time"></a> [time](#requirement\_time) | ~> 0.11 |
1515

1616
## Providers
1717

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

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

modules/privatelink/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
databricks = {
66
source = "databricks/databricks"
7-
version = ">= 1.55"
7+
version = "~>1.0"
88
}
99
}
1010
}

outputs.tf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,8 @@ output "workspace_url" {
1717
value = databricks_mws_workspaces.this.workspace_url
1818
description = "The URL for accessing the Databricks workspace"
1919
}
20+
21+
output "workspace_id" {
22+
value = databricks_mws_workspaces.this.workspace_id
23+
description = "The unique identifier of the Databricks workspace."
24+
}

variables.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,6 @@ variable "iam_cross_account_workspace_role_config" {
107107
})
108108
default = {}
109109
}
110-
111110
################################################################################
112111
# Storage root bucket config
113112
################################################################################

versions.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ terraform {
44
required_providers {
55
aws = {
66
source = "hashicorp/aws"
7-
version = ">= 5.0"
7+
version = "~>5.0"
88
}
99
databricks = {
1010
source = "databricks/databricks"
11-
version = ">= 1.55"
11+
version = "~>1.0"
1212
}
1313
time = {
1414
source = "hashicorp/time"

0 commit comments

Comments
 (0)