-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #76 from tomarv2/develop
fixing naming standard
Showing
27 changed files
with
97 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,34 @@ | ||
output "cluster_id" { | ||
description = "databricks cluster id" | ||
value = module.databricks_workspace_management.cluster_id | ||
value = module.cluster.cluster_id | ||
} | ||
|
||
output "databricks_secret_acl" { | ||
description = "databricks secret acl" | ||
value = module.databricks_workspace_management.databricks_secret_acl | ||
value = module.cluster.databricks_secret_acl | ||
} | ||
|
||
output "databricks_group" { | ||
description = "databricks group name" | ||
value = module.databricks_workspace_management.databricks_group | ||
value = module.cluster.databricks_group | ||
} | ||
|
||
output "databricks_user" { | ||
description = "databricks user name" | ||
value = module.databricks_workspace_management.databricks_user | ||
value = module.cluster.databricks_user | ||
} | ||
|
||
output "databricks_user_id" { | ||
description = "databricks user id" | ||
value = module.databricks_workspace_management.databricks_user_id | ||
value = module.cluster.databricks_user_id | ||
} | ||
|
||
output "databricks_group_member" { | ||
description = "databricks group members" | ||
value = module.databricks_workspace_management.databricks_group_member | ||
value = module.cluster.databricks_group_member | ||
} | ||
|
||
output "cluster_policy_id" { | ||
description = "databricks cluster policy permissions" | ||
value = module.databricks_workspace_management.cluster_policy_id | ||
value = module.cluster.cluster_policy_id | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,34 @@ | ||
output "cluster_id" { | ||
description = "databricks cluster id" | ||
value = module.databricks_workspace_management.cluster_id | ||
value = module.cluster.cluster_id | ||
} | ||
|
||
output "databricks_secret_acl" { | ||
description = "databricks secret acl" | ||
value = module.databricks_workspace_management.databricks_secret_acl | ||
value = module.cluster.databricks_secret_acl | ||
} | ||
|
||
output "databricks_group" { | ||
description = "databricks group name" | ||
value = module.databricks_workspace_management.databricks_group | ||
value = module.cluster.databricks_group | ||
} | ||
|
||
output "databricks_user" { | ||
description = "databricks user name" | ||
value = module.databricks_workspace_management.databricks_user | ||
value = module.cluster.databricks_user | ||
} | ||
|
||
output "databricks_user_id" { | ||
description = "databricks user id" | ||
value = module.databricks_workspace_management.databricks_user_id | ||
value = module.cluster.databricks_user_id | ||
} | ||
|
||
output "databricks_group_member" { | ||
description = "databricks group members" | ||
value = module.databricks_workspace_management.databricks_group_member | ||
value = module.cluster.databricks_group_member | ||
} | ||
|
||
output "cluster_policy_id" { | ||
description = "databricks cluster policy permissions" | ||
value = module.databricks_workspace_management.cluster_policy_id | ||
value = module.cluster.cluster_policy_id | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 7 additions & 7 deletions
14
examples/clusters/3_standard_cluster_with_auto_scaling/outputs.tf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,34 @@ | ||
output "cluster_id" { | ||
description = "databricks cluster id" | ||
value = module.databricks_workspace_management.cluster_id | ||
value = module.cluster.cluster_id | ||
} | ||
|
||
output "databricks_secret_acl" { | ||
description = "databricks secret acl" | ||
value = module.databricks_workspace_management.databricks_secret_acl | ||
value = module.cluster.databricks_secret_acl | ||
} | ||
|
||
output "databricks_group" { | ||
description = "databricks group name" | ||
value = module.databricks_workspace_management.databricks_group | ||
value = module.cluster.databricks_group | ||
} | ||
|
||
output "databricks_user" { | ||
description = "databricks user name" | ||
value = module.databricks_workspace_management.databricks_user | ||
value = module.cluster.databricks_user | ||
} | ||
|
||
output "databricks_user_id" { | ||
description = "databricks user id" | ||
value = module.databricks_workspace_management.databricks_user_id | ||
value = module.cluster.databricks_user_id | ||
} | ||
|
||
output "databricks_group_member" { | ||
description = "databricks group members" | ||
value = module.databricks_workspace_management.databricks_group_member | ||
value = module.cluster.databricks_group_member | ||
} | ||
|
||
output "cluster_policy_id" { | ||
description = "databricks cluster policy permissions" | ||
value = module.databricks_workspace_management.cluster_policy_id | ||
value = module.cluster.cluster_policy_id | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 7 additions & 7 deletions
14
examples/clusters/4_cluster_with_new_cluster_policy_and_permissions/outputs.tf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,34 @@ | ||
output "cluster_id" { | ||
description = "databricks cluster id" | ||
value = module.databricks_workspace_management.cluster_id | ||
value = module.cluster.cluster_id | ||
} | ||
|
||
output "databricks_secret_acl" { | ||
description = "databricks secret acl" | ||
value = module.databricks_workspace_management.databricks_secret_acl | ||
value = module.cluster.databricks_secret_acl | ||
} | ||
|
||
output "databricks_group" { | ||
description = "databricks group name" | ||
value = module.databricks_workspace_management.databricks_group | ||
value = module.cluster.databricks_group | ||
} | ||
|
||
output "databricks_user" { | ||
description = "databricks user name" | ||
value = module.databricks_workspace_management.databricks_user | ||
value = module.cluster.databricks_user | ||
} | ||
|
||
output "databricks_user_id" { | ||
description = "databricks user id" | ||
value = module.databricks_workspace_management.databricks_user_id | ||
value = module.cluster.databricks_user_id | ||
} | ||
|
||
output "databricks_group_member" { | ||
description = "databricks group members" | ||
value = module.databricks_workspace_management.databricks_group_member | ||
value = module.cluster.databricks_group_member | ||
} | ||
|
||
output "cluster_policy_id" { | ||
description = "databricks cluster policy permissions" | ||
value = module.databricks_workspace_management.cluster_policy_id | ||
value = module.cluster.cluster_policy_id | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 7 additions & 7 deletions
14
examples/clusters/5_cluster_with_existing_cluster_policy/outputs.tf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,34 @@ | ||
output "cluster_id" { | ||
description = "databricks cluster id" | ||
value = module.databricks_workspace_management.cluster_id | ||
value = module.cluster.cluster_id | ||
} | ||
|
||
output "databricks_secret_acl" { | ||
description = "databricks secret acl" | ||
value = module.databricks_workspace_management.databricks_secret_acl | ||
value = module.cluster.databricks_secret_acl | ||
} | ||
|
||
output "databricks_group" { | ||
description = "databricks group name" | ||
value = module.databricks_workspace_management.databricks_group | ||
value = module.cluster.databricks_group | ||
} | ||
|
||
output "databricks_user" { | ||
description = "databricks user name" | ||
value = module.databricks_workspace_management.databricks_user | ||
value = module.cluster.databricks_user | ||
} | ||
|
||
output "databricks_user_id" { | ||
description = "databricks user id" | ||
value = module.databricks_workspace_management.databricks_user_id | ||
value = module.cluster.databricks_user_id | ||
} | ||
|
||
output "databricks_group_member" { | ||
description = "databricks group members" | ||
value = module.databricks_workspace_management.databricks_group_member | ||
value = module.cluster.databricks_group_member | ||
} | ||
|
||
output "cluster_policy_id" { | ||
description = "databricks cluster policy permissions" | ||
value = module.databricks_workspace_management.cluster_policy_id | ||
value = module.cluster.cluster_policy_id | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 7 additions & 7 deletions
14
examples/clusters/6_cluster_with_instance_pool_and_permissions/outputs.tf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,34 @@ | ||
output "cluster_id" { | ||
description = "databricks cluster id" | ||
value = module.databricks_workspace_management.cluster_id | ||
value = module.cluster.cluster_id | ||
} | ||
|
||
output "databricks_secret_acl" { | ||
description = "databricks secret acl" | ||
value = module.databricks_workspace_management.databricks_secret_acl | ||
value = module.cluster.databricks_secret_acl | ||
} | ||
|
||
output "databricks_group" { | ||
description = "databricks group name" | ||
value = module.databricks_workspace_management.databricks_group | ||
value = module.cluster.databricks_group | ||
} | ||
|
||
output "databricks_user" { | ||
description = "databricks user name" | ||
value = module.databricks_workspace_management.databricks_user | ||
value = module.cluster.databricks_user | ||
} | ||
|
||
output "databricks_user_id" { | ||
description = "databricks user id" | ||
value = module.databricks_workspace_management.databricks_user_id | ||
value = module.cluster.databricks_user_id | ||
} | ||
|
||
output "databricks_group_member" { | ||
description = "databricks group members" | ||
value = module.databricks_workspace_management.databricks_group_member | ||
value = module.cluster.databricks_group_member | ||
} | ||
|
||
output "cluster_policy_id" { | ||
description = "databricks cluster policy permissions" | ||
value = module.databricks_workspace_management.cluster_policy_id | ||
value = module.cluster.cluster_policy_id | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 6 additions & 6 deletions
12
examples/clusters/7_cluster_with_aws_instance_profile/outputs.tf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,28 @@ | ||
output "cluster_id" { | ||
description = "databricks cluster id" | ||
value = module.databricks_workspace_management.cluster_id | ||
value = module.cluster.cluster_id | ||
} | ||
output "databricks_secret_acl" { | ||
description = "databricks secret acl" | ||
value = module.databricks_workspace_management.databricks_secret_acl | ||
value = module.cluster.databricks_secret_acl | ||
} | ||
|
||
output "databricks_group" { | ||
description = "databricks group name" | ||
value = module.databricks_workspace_management.databricks_group | ||
value = module.cluster.databricks_group | ||
} | ||
|
||
output "databricks_user" { | ||
description = "databricks user name" | ||
value = module.databricks_workspace_management.databricks_user | ||
value = module.cluster.databricks_user | ||
} | ||
|
||
output "databricks_user_id" { | ||
description = "databricks user id" | ||
value = module.databricks_workspace_management.databricks_user_id | ||
value = module.cluster.databricks_user_id | ||
} | ||
|
||
output "databricks_group_member" { | ||
description = "databricks group members" | ||
value = module.databricks_workspace_management.databricks_group_member | ||
value = module.cluster.databricks_group_member | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions
10
examples/jobs/1_job_on_new_cluster_with_new_and_existing_notebooks/outputs.tf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,23 @@ | ||
output "cluster_id" { | ||
description = "databricks cluster id" | ||
value = module.databricks_workspace_management.cluster_id | ||
value = module.job.cluster_id | ||
} | ||
|
||
output "notebook_url" { | ||
description = "databricks notebook url" | ||
value = module.databricks_workspace_management.notebook_url | ||
value = module.job.notebook_url | ||
} | ||
output "job_url" { | ||
description = "databricks job url" | ||
value = module.databricks_workspace_management.new_cluster_new_job_new_notebooks_job | ||
value = module.job.new_cluster_new_job_new_notebooks_job | ||
} | ||
|
||
output "job_id" { | ||
description = "databricks job id" | ||
value = module.databricks_workspace_management.new_cluster_new_job_new_notebooks_id | ||
value = module.job.new_cluster_new_job_new_notebooks_id | ||
} | ||
|
||
output "notebooks_id" { | ||
description = "databricks notebook id" | ||
value = module.databricks_workspace_management.new_cluster_new_job_existing_notebooks_id | ||
value = module.job.new_cluster_new_job_existing_notebooks_id | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions
10
examples/jobs/2_job_on_new_cluster_with_new_and_existing_notebooks_without_acl/outputs.tf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,23 @@ | ||
output "cluster_id" { | ||
description = "databricks cluster id" | ||
value = module.databricks_workspace_management.cluster_id | ||
value = module.job.cluster_id | ||
} | ||
|
||
output "notebook_url" { | ||
description = "databricks notebook url" | ||
value = module.databricks_workspace_management.notebook_url | ||
value = module.job.notebook_url | ||
} | ||
output "job_url" { | ||
description = "databricks job url" | ||
value = module.databricks_workspace_management.new_cluster_new_job_new_notebooks_job | ||
value = module.job.new_cluster_new_job_new_notebooks_job | ||
} | ||
|
||
output "job_id" { | ||
description = "databricks job id" | ||
value = module.databricks_workspace_management.new_cluster_new_job_new_notebooks_id | ||
value = module.job.new_cluster_new_job_new_notebooks_id | ||
} | ||
|
||
output "notebooks_id" { | ||
description = "databricks notebook id" | ||
value = module.databricks_workspace_management.new_cluster_new_job_existing_notebooks_id | ||
value = module.job.new_cluster_new_job_existing_notebooks_id | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
examples/jobs/3_job_on_existing_cluster_with_existing_notebooks/outputs.tf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
output "notebook_url" { | ||
description = "databricks notebook url" | ||
value = module.databricks_workspace_management.notebook_url | ||
value = module.job.notebook_url | ||
} | ||
|
||
output "job_url" { | ||
description = "databricks new cluster job url" | ||
value = module.databricks_workspace_management.existing_cluster_new_job_existing_notebooks_job | ||
value = module.job.existing_cluster_new_job_existing_notebooks_job | ||
} | ||
|
||
output "job_id" { | ||
description = "job id" | ||
value = module.databricks_workspace_management.existing_cluster_new_job_existing_notebooks_id | ||
value = module.job.existing_cluster_new_job_existing_notebooks_id | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 7 additions & 3 deletions
10
examples/jobs/4_job_on_existing_cluster_with_new_notebooks/outputs.tf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,19 @@ | ||
output "notebook_url" { | ||
description = "databricks notebook url" | ||
value = module.jobs.notebook_url | ||
value = module.job.notebook_url | ||
} | ||
|
||
output "job_url" { | ||
description = "databricks job url" | ||
value = module.jobs.existing_cluster_new_job_new_notebooks_job | ||
value = module.job.existing_cluster_new_job_new_notebooks_job | ||
} | ||
|
||
output "job_id" { | ||
description = "databricks job id" | ||
value = module.jobs.existing_cluster_new_job_new_notebooks_id | ||
value = module.job.existing_cluster_new_job_new_notebooks_id | ||
} | ||
|
||
output "cluster_id" { | ||
description = "databricks cluster id" | ||
value = module.cluster.cluster_id | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
output "notebook_url_standalone" { | ||
description = "databricks notebook url" | ||
value = module.databricks_workspace_management.notebook_url_standalone | ||
value = module.notebook.notebook_url_standalone | ||
} | ||
|
||
/* | ||
output "notebook_permissions" { | ||
description = "databricks notebook permissions" | ||
value = module.databricks_workspace_management.notebook_permissions | ||
value = module.cluster.notebook_permissions | ||
} | ||
*/ |