File tree Expand file tree Collapse file tree 9 files changed +20
-15
lines changed Expand file tree Collapse file tree 9 files changed +20
-15
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 @@ -157,4 +157,4 @@ resource "databricks_mws_storage_configurations" "this" {
157
157
account_id = var. account_id
158
158
storage_configuration_name = var. label
159
159
bucket_name = module. storage_configuration_dbfs_bucket [0 ]. s3_bucket_id
160
- }
160
+ }
Original file line number Diff line number Diff line change @@ -10,4 +10,4 @@ resource "databricks_mws_vpc_endpoint" "relay" {
10
10
aws_vpc_endpoint_id = var. relay_aws_vpc_endpoint_id
11
11
vpc_endpoint_name = var. relay_vpc_endpoint_name
12
12
region = var. region
13
- }
13
+ }
Original file line number Diff line number Diff line change @@ -6,4 +6,4 @@ output "rest_vpce_id" {
6
6
output "relay_vpce_id" {
7
7
value = databricks_mws_vpc_endpoint. relay . vpc_endpoint_id
8
8
description = " The ID of the AWS VPC endpoint associated with the Databricks Relay service"
9
- }
9
+ }
Original file line number Diff line number Diff line change @@ -25,4 +25,4 @@ variable "relay_aws_vpc_endpoint_id" {
25
25
variable "account_id" {
26
26
type = string
27
27
description = " Databricks Account ID"
28
- }
28
+ }
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
# ###############################################################################
@@ -151,4 +150,4 @@ variable "private_access_settings_config" {
151
150
public_access_enabled = optional (bool , true )
152
151
})
153
152
default = {}
154
- }
153
+ }
Original file line number Diff line number Diff line change @@ -4,15 +4,15 @@ 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"
15
15
version = " ~> 0.11"
16
16
}
17
17
}
18
- }
18
+ }
You can’t perform that action at this time.
0 commit comments