I want to create Azure Active Directory Application with PasswordCredentials. The following doc uses Password and not PasswordCredentials https://docs.microsoft.com/en-us/powershell/module/az.resources/new-azadapplication?view=azps-2.4.0
Could anyone suggest how do i create PasswordCredentials object using Az module and pass in the New-AzADApplication
New-AzADApplication -DisplayName "xxx" -IdentifierUris "xxx" -PasswordCredentials
New-AzureRmADSpCredential
- Mathias R. JessenPSADPasswordCredential
is created. Skip the last 4 lines - Theo