Skip to content

Commit

Permalink
Updated mentions of application id to app id (#2639)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikefrobbins authored Jul 17, 2023
1 parent 5f5b5a5 commit 8634570
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs-conceptual/azps-10.1.0/authenticate-azureps.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
description: How to sign in with Azure PowerShell as a user, service principal, or with managed identities for Azure resources.
ms.custom: devx-track-azurepowershell
ms.date: 07/05/2023
ms.date: 07/17/2023
ms.devlang: powershell
ms.service: azure-powershell
ms.topic: conceptual
Expand Down Expand Up @@ -64,8 +64,8 @@ To learn how to create a service principal for use with Azure PowerShell, see
[Create an Azure service principal with Azure PowerShell](create-azure-service-principal-azureps.md).

To sign in with a service principal, use the `ServicePrincipal` parameter of the `Connect-AzAccount`
cmdlet. You'll also need the service principal's application ID, sign-in credentials, and the tenant
ID associate with the service principal. How you sign in with a service principal depends on whether
cmdlet. You'll also need the service principal's AppId, sign-in credentials, and the tenant ID
associate with the service principal. How you sign in with a service principal depends on whether
it's configured for password-based or certificate-based authentication.

### Password-based authentication
Expand All @@ -84,7 +84,7 @@ $sp = New-AzADServicePrincipal -DisplayName ServicePrincipalName
To get the service principal's credentials as the appropriate object, use the
[Get-Credential](/powershell/module/microsoft.powershell.security/get-credential) cmdlet. This
cmdlet presents a prompt for a username and password. Use the service principal's `applicationID`
cmdlet presents a prompt for a username and password. Use the service principal's `AppId`
for the username and convert its `secret` to plain text for the password.

```azurepowershell-interactive
Expand Down Expand Up @@ -116,7 +116,7 @@ Connect-AzAccount -ApplicationId $appId -Tenant $tenantId -CertificateThumbprint
```

When using a service principal instead of a registered application, specify the **ServicePrincipal**
parameter and provide the service principal's Application ID as the value for the **ApplicationId**
parameter and provide the service principal's AppId as the value for the **ApplicationId**
parameter.

```azurepowershell-interactive
Expand Down

0 comments on commit 8634570

Please sign in to comment.