Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: add to resource_app_id description and fix typos in service_principals.md #1362

Merged
merged 2 commits into from
Apr 29, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/data-sources/service_principals.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ data "azuread_service_principals" "example" {
}
```

*Look up by application IDs (client IDs*
*Look up by application IDs (client IDs)
manicminer marked this conversation as resolved.
Show resolved Hide resolved

```terraform
data "azuread_service_principals" "example" {
Expand Down
2 changes: 1 addition & 1 deletion internal/services/applications/application_data_source.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
},
Expand Down
Loading