You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: ChangeLog.md
+9-1Lines changed: 9 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,12 @@
1
-
## 6.1.0 - May 2018
1
+
## 6.1.1 - May 2018
2
+
#### AzureRM.Resources
3
+
* Revert change to `New-AzureRmADServicePrincipal` that gave service principals `Contributor` permissions over the current subscription if no values were provided for the `Role` or `Scope` parameters
4
+
- If no values are provided for `Role` or `Scope`, the service principal is created with no permissions
5
+
- If a `Role` is provided, but no `Scope`, the service principal is created with the specified `Role` permissions over the current subscription
6
+
- If a `Scope` is provided, but no `Role`, the service principal is created with `Contributor` permissions over the specified `Scope`
7
+
- If both `Role` and `Scope` are provided, the service principal is created with the specified `Role` permissions over the specified `Scope`
8
+
9
+
## 6.1.0 - May 2018
2
10
#### AzureRM.Profile
3
11
* Fix issue where running 'Clear-AzureRmContext' would keep an empty context with the name of the previous default context, which prevented the user from creating a new context with the old name
Copy file name to clipboardExpand all lines: src/ResourceManager/Resources/AzureRM.Resources.psd1
+6-16Lines changed: 6 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@
12
12
# RootModule = ''
13
13
14
14
# Version number of this module.
15
-
ModuleVersion='6.0.0'
15
+
ModuleVersion='6.0.1'
16
16
17
17
# Supported PSEditions
18
18
# CompatiblePSEditions = @()
@@ -164,21 +164,11 @@ PrivateData = @{
164
164
# IconUri = ''
165
165
166
166
# ReleaseNotes of this module
167
-
ReleaseNotes='* Set minimum dependency of module to PowerShell 5.0
168
-
* Remove obsolete parameter -AtScopeAndBelow from Get-AzureRmRoledefinition call
169
-
* Include assignments to deleted Users/Groups/ServicePrincipals in Get-AzureRmRoleAssignment result
170
-
* Add convenience cmdlet for creating ServicePrincipals
171
-
* Add Tab completers for Scope and ResourceType
172
-
* Merge Get- and Find- functionality in Get-AzureRmResource
173
-
* Add AD Cmdlets:
174
-
- Remove-AzureRmADGroupMember
175
-
- Get-AzureRmADGroup
176
-
- New-AzureRmADGroup
177
-
- Remove-AzureRmADGroup
178
-
- Remove-AzureRmADUser
179
-
- Update-AzureRmADApplication
180
-
- Update-AzureRmADServicePrincipal
181
-
- Update-AzureRmADUser'
167
+
ReleaseNotes='* Revert change to `New-AzureRmADServicePrincipal` that gave service principals `Contributor` permissions over the current subscription if no values were provided for the `Role` or `Scope` parameters
168
+
- If no values are provided for `Role` or `Scope`, the service principal is created with no permissions
169
+
- If a `Role` is provided, but no `Scope`, the service principal is created with the specified `Role` permissions over the current subscription
170
+
- If a `Scope` is provided, but no `Role`, the service principal is created with `Contributor` permissions over the specified `Scope`
171
+
- If both `Role` and `Scope` are provided, the service principal is created with the specified `Role` permissions over the specified `Scope`'
Copy file name to clipboardExpand all lines: src/ResourceManager/Resources/ChangeLog.md
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -20,6 +20,13 @@
20
20
## Current Release
21
21
* Fix issue with `Properties` property of `PSResource` object(s) returned from `Get-AzureRmResource`
22
22
23
+
## Version 6.0.1
24
+
* Revert change to `New-AzureRmADServicePrincipal` that gave service principals `Contributor` permissions over the current subscription if no values were provided for the `Role` or `Scope` parameters
25
+
- If no values are provided for `Role` or `Scope`, the service principal is created with no permissions
26
+
- If a `Role` is provided, but no `Scope`, the service principal is created with the specified `Role` permissions over the current subscription
27
+
- If a `Scope` is provided, but no `Role`, the service principal is created with `Contributor` permissions over the specified `Scope`
28
+
- If both `Role` and `Scope` are provided, the service principal is created with the specified `Role` permissions over the specified `Scope`
29
+
23
30
## Version 6.0.0
24
31
* Set minimum dependency of module to PowerShell 5.0
25
32
* Remove obsolete parameter -AtScopeAndBelow from Get-AzureRmRoledefinition call
0 commit comments