Skip to content

Commit

Permalink
Release v0.4.9 (#1104)
Browse files Browse the repository at this point in the history
* Release v0.4.9

# Version changelog

## 0.4.9

* Prevent creation of `databricks_group` with `users` and `admins` reserved names ([#1089](#1089)).
* Added support for shared clusters in multi-task `databricks_job` ([#1082](#1082)).
* Added diff suppression for `external_id` in `databricks_group` ([#1099](#1099)).
* Added diff suppression for `external_id` in `databricks_user` ([#1097](#1097)).
* Added `users`, `service_principals`, and `child_groups` exported properties to `databricks_group` data resource ([#1085](#1085)).
* Added various documentation improvements.
  • Loading branch information
nfx authored Feb 11, 2022
1 parent 5d7bfc2 commit 59c12c7
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ terraform {
required_providers {
databricks = {
source = "databrickslabs/databricks"
version = "0.4.8"
version = "0.4.9"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion common/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package common
import "context"

var (
version = "0.4.8"
version = "0.4.9"
// ResourceName is resource name without databricks_ prefix
ResourceName contextKey = 1
// Provider is the current instance of provider
Expand Down
2 changes: 1 addition & 1 deletion docs/guides/aws-workspace.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ terraform {
required_providers {
databricks = {
source = "databrickslabs/databricks"
version = "0.4.8"
version = "0.4.9"
}
aws = {
source = "hashicorp/aws"
Expand Down
2 changes: 1 addition & 1 deletion docs/guides/unity-catalog.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ terraform {
required_providers {
databricks = {
source = "databrickslabs/databricks"
version = "0.4.8"
version = "0.4.9"
}
aws = {
source = "hashicorp/aws"
Expand Down
2 changes: 1 addition & 1 deletion docs/guides/workspace-management.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ terraform {
required_providers {
databricks = {
source = "databrickslabs/databricks"
version = "0.4.8"
version = "0.4.9"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ terraform {
required_providers {
databricks = {
source = "databrickslabs/databricks"
version = "0.4.8"
version = "0.4.9"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion scim/acceptance/data_group_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ func createUuid() string {
}

func TestAccGroupDataSplitMembers(t *testing.T) {
if cloudEnv, ok := os.LookupEnv("CLOUD_ENV"); !ok && cloudEnv != "azure" {
if cloudEnv, ok := os.LookupEnv("CLOUD_ENV"); !ok || cloudEnv != "azure" {
t.Skip("This test will only run on Azure. For simplicity.")
}

Expand Down
2 changes: 1 addition & 1 deletion scripts/gcp-integration/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ output "databricks_host" {
value = databricks_mws_workspaces.this.workspace_url
}

output "databricks_token" {
output "token" {
value = databricks_mws_workspaces.this.token[0].token_value
sensitive = true
}
Expand Down

0 comments on commit 59c12c7

Please sign in to comment.