Skip to content

Commit 54d7471

Browse files
committed
Update docs
1 parent c2374dd commit 54d7471

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

docs/data-sources/databricks_credential.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
page_title: "dbtcloud_databricks_credential Data Source - dbtcloud"
44
subcategory: ""
55
description: |-
6-
6+
Databricks credential data source
77
---
88

99
# dbtcloud_databricks_credential (Data Source)
1010

11-
11+
Databricks credential data source
1212

1313

1414

@@ -24,7 +24,7 @@ description: |-
2424

2525
- `adapter_id` (Number) Databricks adapter ID for the credential
2626
- `catalog` (String) The catalog where to create models
27-
- `id` (String) The ID of this resource.
28-
- `num_threads` (Number) Number of threads to use
27+
- `id` (String) The ID of this resource. Contains the project ID and the credential ID.
28+
- `num_threads` (Number) The number of threads to use
2929
- `schema` (String) The schema where to create models
3030
- `target_name` (String) Target name

docs/resources/databricks_credential.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
page_title: "dbtcloud_databricks_credential Resource - dbtcloud"
33
subcategory: ""
44
description: |-
5-
5+
Databricks credential resource
66
---
77

88
# dbtcloud_databricks_credential (Resource)
99

1010

11-
11+
Databricks credential resource
1212

1313
## Example Usage
1414

@@ -54,14 +54,14 @@ resource "dbtcloud_databricks_credential" "my_spark_cred" {
5454

5555
### Optional
5656

57-
- `adapter_id` (Number) Databricks adapter ID for the credential (do not fill in when using global connections, only to be used for connections created with the legacy connection resource `dbtcloud_connection`)
57+
- `adapter_id` (Number) Databricks adapter ID for the credential (do not fill in when using global connections, only to be used for connections created with the legacy connection resource `dbtcloud_connection')
5858
- `catalog` (String) The catalog where to create models (only for the databricks adapter)
5959
- `target_name` (String, Deprecated) Target name
6060

6161
### Read-Only
6262

6363
- `credential_id` (Number) The system Databricks credential ID
64-
- `id` (String) The ID of this resource.
64+
- `id` (String) The ID of this resource. Contains the project ID and the credential ID.
6565

6666
## Import
6767

pkg/framework/objects/databricks_credential/schema.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ var resourceSchema = resource_schema.Schema{
6060
},
6161
},
6262
"project_id": resource_schema.Int64Attribute{
63-
Description: "Project ID",
63+
Description: "Project ID to create the Databricks credential in",
6464
Required: true,
6565
PlanModifiers: []planmodifier.Int64{
6666
int64planmodifier.RequiresReplace(),
@@ -74,7 +74,7 @@ var resourceSchema = resource_schema.Schema{
7474
},
7575
},
7676
"adapter_id": resource_schema.Int64Attribute{
77-
Description: "Databricks adapter ID for the credential (do not fill in when using global connections, only to be used for connections created with the legacy connection resource `dbtcloud_connection)",
77+
Description: "Databricks adapter ID for the credential (do not fill in when using global connections, only to be used for connections created with the legacy connection resource `dbtcloud_connection')",
7878
Optional: true,
7979
PlanModifiers: []planmodifier.Int64{
8080
int64planmodifier.RequiresReplace(),

0 commit comments

Comments
 (0)