Skip to content

Commit e9c304d

Browse files
Add missing adapter_id field to the schema
1 parent 006c711 commit e9c304d

2 files changed

Lines changed: 5 additions & 0 deletions

File tree

docs/resources/fabric_credential.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ resource "dbtcloud_fabric_credential" "my_fabric_cred_serv_princ" {
4040

4141
### Required
4242

43+
- `adapter_id` (Number) Fabric adapter ID for the credential
4344
- `project_id` (Number) Project ID to create the Fabric credential in
4445
- `schema` (String) The schema where to create the dbt models
4546

pkg/framework/objects/fabric_credential/schema.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@ var resourceSchema = resource_schema.Schema{
3030
int64planmodifier.RequiresReplace(),
3131
},
3232
},
33+
"adapter_id": resource_schema.Int64Attribute{
34+
Required: true,
35+
Description: "Fabric adapter ID for the credential",
36+
},
3337
"credential_id": resource_schema.Int64Attribute{
3438
Computed: true,
3539
Description: "The internal credential ID",

0 commit comments

Comments
 (0)