diff --git a/docs/data-sources/service_principals.md b/docs/data-sources/service_principals.md index 2db60af37a..ae104bc64f 100644 --- a/docs/data-sources/service_principals.md +++ b/docs/data-sources/service_principals.md @@ -27,7 +27,7 @@ data "azuread_service_principals" "example" { } ``` -*Look up by application IDs (client IDs* +*Look up by application IDs (client IDs)* ```terraform data "azuread_service_principals" "example" { diff --git a/internal/services/applications/application_data_source.go b/internal/services/applications/application_data_source.go index 1cf6628473..16fbdce9ca 100644 --- a/internal/services/applications/application_data_source.go +++ b/internal/services/applications/application_data_source.go @@ -374,7 +374,7 @@ func applicationDataSource() *pluginsdk.Resource { Elem: &pluginsdk.Resource{ Schema: map[string]*pluginsdk.Schema{ "resource_app_id": { - Description: "The unique identifier for the resource that the application requires access to. This is the Application ID of the target application", + Description: "The unique identifier for the resource that the application requires access to. This is the Client ID (also called Application ID) of the target application", Type: pluginsdk.TypeString, Computed: true, },