Skip to content

Commit a903575

Browse files
committed
updating readme
1 parent 8cef470 commit a903575

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
> :point_right: Part 2: Terraform module for [Databricks Workspace management](https://github.com/tomarv2/terraform-databricks-workspace-management)
3131
3232
---
33-
3433
![Databricks deployment](https://github.com/tomarv2/terraform-databricks-aws-workspace/raw/main/docs/images/databricks_deployment.png)
3534
---
3635

examples/sample/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module "databricks_workspace" {
2-
source = "../../"
2+
source = "git::git@github.com:tomarv2/terraform-databricks-aws-workspace.git?ref=v0.0.3"
33

44
profile_for_iam = "iam-admin"
55
aws_region = "us-east-2"

examples/sample/outputs.tf

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,13 @@ output "databricks_deployment_name" {
3737
description = "databricks deployment name"
3838
value = module.databricks_workspace.databricks_deployment_name
3939
}
40+
41+
output "pat_token" {
42+
description = "databricks pat"
43+
value = module.databricks_workspace.pat_token
44+
}
45+
46+
output "pat_token_duration" {
47+
description = "databricks pat"
48+
value = module.databricks_workspace.pat_token_duration
49+
}

outputs.tf

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,14 +73,12 @@ output "workspace_url" {
7373
value = databricks_mws_workspaces.this
7474
}
7575

76-
/*
7776
output "pat_token" {
7877
description = "databricks pat"
79-
value = databricks_token.pat.connection
78+
value = databricks_token.pat.id
8079
}
8180

8281
output "pat_token_duration" {
8382
description = "databricks pat"
8483
value = databricks_token.pat.lifetime_seconds
8584
}
86-
*/

0 commit comments

Comments
 (0)