Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nkvuong committed Oct 18, 2024
1 parent f34038f commit 0c14c13
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/resource_custom_app_integration.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func ResourceCustomAppIntegration() common.Resource {
for _, p := range []string{"client_id", "create_time", "created_by", "creator_username", "integration_id"} {
common.CustomizeSchemaPath(m, p).SetComputed()
}
for _, p := range []string{"name", "scopes"} {
for _, p := range []string{"confidential", "name", "scopes"} {
common.CustomizeSchemaPath(m, p).SetForceNew()
}
common.CustomizeSchemaPath(m, "client_secret").SetSensitive().SetComputed()
Expand Down
4 changes: 2 additions & 2 deletions docs/resources/custom_app_integration.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ In addition to all arguments above, the following attributes are exported:

## Import

This resource can be imported by Databricks account ID and integration ID.
This resource can be imported by its integration ID.

```sh
terraform import databricks_budget.this '<account_id>|<budget_configuration_id>'
terraform import databricks_custom_app_integration.this '<integration_id>'
```

## Related Resources
Expand Down

0 comments on commit 0c14c13

Please sign in to comment.