From 0c14c137882ebc9fe4f151cc6f2ee5b05c05d9cd Mon Sep 17 00:00:00 2001 From: Vuong Date: Fri, 18 Oct 2024 20:25:04 +0800 Subject: [PATCH] fix --- apps/resource_custom_app_integration.go | 2 +- docs/resources/custom_app_integration.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/resource_custom_app_integration.go b/apps/resource_custom_app_integration.go index 30816c8832..6fcb89479b 100644 --- a/apps/resource_custom_app_integration.go +++ b/apps/resource_custom_app_integration.go @@ -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() diff --git a/docs/resources/custom_app_integration.md b/docs/resources/custom_app_integration.md index 30700359e8..96a412edbc 100644 --- a/docs/resources/custom_app_integration.md +++ b/docs/resources/custom_app_integration.md @@ -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 '|' +terraform import databricks_custom_app_integration.this '' ``` ## Related Resources