You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: NEXT_CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,7 @@
7
7
### New Features and Improvements
8
8
* Add resource and data sources for `databricks_environments_workspace_base_environment`.
9
9
* Add resource and data source for `databricks_environments_default_workspace_base_environment`.
10
+
* Add `string_value_wo` and `string_value_wo_version` attributes to `databricks_secret` resource ([#5480](https://github.com/databricks/terraform-provider-databricks/pull/5480))
10
11
11
12
* Added optional `cloud` argument to `databricks_current_config` data source to explicitly set the cloud type (`aws`, `azure`, `gcp`) instead of relying on host-based detection.
Copy file name to clipboardExpand all lines: docs/resources/secret.md
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,8 @@ With this resource you can insert a secret under the provided scope with the giv
7
7
8
8
-> This resource can only be used with a workspace-level provider!
9
9
10
+
-> **Note** Write-Only argument string_value_wo is available to use in place of string_value. Write-Only argumentss are supported in HashiCorp Terraform 1.11.0 and later. [Learn more](https://developer.hashicorp.com/terraform/language/manage-sensitive-data/ephemeral#write-only-arguments).
*`string_value` - (Required) (String) super secret sensitive value.
38
+
*`string_value` - (Optional) (String) Specifies text data that you want to encrypt and store in the secret. This is required if `string_value_wo` is not set.
39
+
*`string_value_wo` (Optional) (String) Specifies text data that you want to encrypt and store in the secret. This is required if `string_value` is not set.
40
+
*`string_value_wo_version` (Optional) (Integer) Use together with string_value_wo to trigger an update. Increment this value when an update to `string_value_wo` is required.
37
41
*`scope` - (Required) (String) name of databricks secret scope. Must consist of alphanumeric characters, dashes, underscores, and periods, and may not exceed 128 characters.
38
42
*`key` - (Required) (String) key within secret scope. Must consist of alphanumeric characters, dashes, underscores, and periods, and may not exceed 128 characters.
39
43
*`provider_config` - (Optional) Configure the provider for management through account provider. This block consists of the following fields:
0 commit comments