File tree Expand file tree Collapse file tree 5 files changed +13
-8
lines changed Expand file tree Collapse file tree 5 files changed +13
-8
lines changed Original file line number Diff line number Diff line change @@ -9,16 +9,16 @@ Terraform module for creation AWS Databricks Workspace
9
9
| Name | Version |
10
10
| ------| ---------|
11
11
| <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 |
14
14
| <a name =" requirement_time " ></a > [ time] ( #requirement\_ time ) | ~ > 0.11 |
15
15
16
16
## Providers
17
17
18
18
| Name | Version |
19
19
| ------| ---------|
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 |
22
22
| <a name =" provider_time " ></a > [ time] ( #provider\_ time ) | ~ > 0.11 |
23
23
24
24
## Modules
@@ -76,6 +76,7 @@ Terraform module for creation AWS Databricks Workspace
76
76
| <a name =" output_iam_role " ></a > [ iam\_ role] ( #output\_ iam\_ role ) | The IAM role created for cross-account access to the Databricks workspace |
77
77
| <a name =" output_storage " ></a > [ storage] ( #output\_ storage ) | The storage configuration for the DBFS bucket associated with the workspace |
78
78
| <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. |
79
80
| <a name =" output_workspace_url " ></a > [ workspace\_ url] ( #output\_ workspace\_ url ) | The URL for accessing the Databricks workspace |
80
81
<!-- END_TF_DOCS -->
81
82
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ terraform {
4
4
required_providers {
5
5
databricks = {
6
6
source = " databricks/databricks"
7
- version = " >= 1.55 "
7
+ version = " ~>1.0 "
8
8
}
9
9
}
10
10
}
Original file line number Diff line number Diff line change @@ -17,3 +17,8 @@ output "workspace_url" {
17
17
value = databricks_mws_workspaces. this . workspace_url
18
18
description = " The URL for accessing the Databricks workspace"
19
19
}
20
+
21
+ output "workspace_id" {
22
+ value = databricks_mws_workspaces. this . workspace_id
23
+ description = " The unique identifier of the Databricks workspace."
24
+ }
Original file line number Diff line number Diff line change @@ -107,7 +107,6 @@ variable "iam_cross_account_workspace_role_config" {
107
107
})
108
108
default = {}
109
109
}
110
-
111
110
# ###############################################################################
112
111
# Storage root bucket config
113
112
# ###############################################################################
Original file line number Diff line number Diff line change @@ -4,11 +4,11 @@ terraform {
4
4
required_providers {
5
5
aws = {
6
6
source = " hashicorp/aws"
7
- version = " >= 5.0"
7
+ version = " ~> 5.0"
8
8
}
9
9
databricks = {
10
10
source = " databricks/databricks"
11
- version = " >= 1.55 "
11
+ version = " ~>1.0 "
12
12
}
13
13
time = {
14
14
source = " hashicorp/time"
You can’t perform that action at this time.
0 commit comments