Skip to content

Commit f4adacf

Browse files
authored
Merge pull request #7615 from Azure/sphibbs-patch-1
Added Auth changes section
2 parents b2ec17d + ed53452 commit f4adacf

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

documentation/announcing-az-module.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,27 @@ Az is a new module, and reorganizing and simplifying cmdlet names involves break
2929
## AzureRM Module Support
3030
AzureRM will continue to be supported, and important bugs will be fixed, but new development and new Azure capabilities will be shipped only in Az starting December 2018.
3131

32+
## Authentication Changes
33+
- ADAL has removed support for the "not recommended" user credential auth flow.
34+
- Connect-AzAccount will no longer accept PSCredential from Get-Credential
35+
- Here are a couple issues that describe why ADAL has removed this support
36+
- [Azure ActiveDirectory UserPasswordCredential doesn't support .NET core](https://github.com/AzureAD/azure-activedirectory-library-for-dotnet/issues/482#issuecomment-262256236)
37+
- [Connect-AzureRmAccount with user credential login does not work in Az](https://github.com/Azure/azure-powershell/issues/7430#issuecomment-426480499)
38+
39+
- Service Principal improvements
40+
- Self-renewing Service Principal Authentication
41+
- Service Principal Certificate Authentication (in the future)
42+
- Device Auth Flow
43+
- Future Improvements
44+
- [Interactive user credential login in az](https://github.com/Azure/azure-powershell/issues/7358)
45+
46+
3247
## Migrating From AzureRM
3348

3449
To make it easier for existing scripts to migrate from AzureRM to Az, we have provided cmdlets to create aliases that map the cmdlet names in AzureRM into the appropriate cmdlets in Az. When the aliases are enabled, any script that uses AzureRM cmdlet names should run against Az without modification.
3550

51+
Note: Connect-AzAccount aka Connect-AzureRmAccount no longer supports $pscredential. See [Authentication Changes](#authentication-changes) for more
52+
3653
```powershell
3754
PS C:\> Enable-AzureRmAlias
3855
```

0 commit comments

Comments
 (0)