-
Notifications
You must be signed in to change notification settings - Fork 500
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
Msft intune mobile app configuration policy ios #5401
base: Dev
Are you sure you want to change the base?
Msft intune mobile app configuration policy ios #5401
Conversation
Untested
Export appears to be working for "settings"
Module is affected by issue microsoft#5396. Replace ` with " in M365TenantConfig.ps1 is your configuration key values contain double quotes. Otherwise, it should work as expected.
Same comment as for your other PR:
Also we need an entry of this new resource in the changelog: https://github.com/microsoft/Microsoft365DSC/blob/Dev/CHANGELOG.md Could you please add these items to the PR? |
create,update and remove examples added
Added unit test, examples and updated change log. Hopefully I did it right?! |
Do not see the updated changelog yet. Could you please check? |
"delegated": { | ||
"read": [ | ||
{ | ||
"name": "DeviceManagementApps.Read.All" | ||
} | ||
], | ||
"update": [ | ||
{ | ||
"name": "DeviceManagementApps.ReadWrite.All" | ||
} | ||
] | ||
}, | ||
"application": { | ||
"read": [ | ||
{ | ||
"name": "DeviceManagementApps.Read.All" | ||
} | ||
], | ||
"update": [ | ||
{ | ||
"name": "DeviceManagementApps.ReadWrite.All" | ||
} | ||
] | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Because we're dealing with Intune assignments, an additional entry for Group.Read.All
is required. You can take at the other Intune resources.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There are many blank linkes in there. Please remove them for better readability.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok thanks will sort it out over the weekend
Group.Read.All permission added to settings.json Excessive number of blank lines reduced for readability.
Pull Request (PR) description
This Pull Request (PR) fixes the following issues