Skip to content

Commit bcc00e7

Browse files
authored
Merge pull request #6 from data-platform-hq/data_security_mode_on_cluster_default_value_change
fix: data_security_mode set to NONE by default
2 parents 2d8b4cb + bb62a38 commit bcc00e7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ No modules.
6161
| <a name="input_permissions"></a> [permissions](#input\_permissions) | Databricks Workspace permission maps | `list(map(string))` | <pre> [{ <br> object_id = null <br> role = null <br> }] </pre> | no |
6262
| <a name="input_spark_version"></a> [spark\_version](#input\_spark\_version) | Runtime version | `string` | "11.3.x-scala2.12" | no |
6363
| <a name="input_spark_conf"></a> [spark\_conf](#input\_spark\_conf) | Map with key-value pairs to fine-tune Spark clusters, where you can provide custom Spark configuration properties in a cluster configuration. | `map(any)` | {} | no |
64-
| <a name="input_data_security_mode"></a> [data\_security\_mode](#input\_data\_security\_mode) | Security features of the cluster | `string` | "USER_ISOLATION" | no |
64+
| <a name="input_data_security_mode"></a> [data\_security\_mode](#input\_data\_security\_mode) | Security features of the cluster | `string` | "NONE" | no |
6565
| <a name="input_node_type"></a> [spark\_node\_type](#input\_node\_type) | Databricks_node_type id | `string` | "Standard_D3_v2" | no |
6666
| <a name="input_mountpoints"></a> [mountpoints](#input\_mountpoints) | Mountpoints for databricks | `map(any)` | null | no |
6767

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ variable "permissions" {
104104
variable "data_security_mode" {
105105
type = string
106106
description = "Security features of the cluster"
107-
default = "USER_ISOLATION"
107+
default = "NONE"
108108
validation {
109109
condition = contains(["SINGLE_USER", "USER_ISOLATION", "NONE"], var.data_security_mode)
110110
error_message = "Catalog Access mode must be either 'SINGLE_USER', 'USER_ISOLATION' or 'NONE' value"

0 commit comments

Comments
 (0)