Extend the action for the command aad o365group add with additional validation and wait in performing the operation until all the values in --owners and --members are valid. If some of the values are invalid, operation should be exited with proper message
More Details
The command aad o365group add has the option --owners and --members which supports multiple values in comma separated way.
Currently, even if some of the values in --owners and --members option is invalid, execution will be progressed further with the the valid values.
Based on discussion, #2638 it was decided that even if some of the values in --owners and --members option is invalid execution should be made as faulty and NOT successful.
Since we may not be able to validate this during the validation phase, this has to be handled during the execution phase.
Extend the action for the command
aad o365group addwith additional validation and wait in performing the operation until all the values in--ownersand--membersare valid. If some of the values are invalid, operation should be exited with proper messageMore Details
The command
aad o365group addhas the option--ownersand--memberswhich supports multiple values in comma separated way.Currently, even if some of the values in
--ownersand--membersoption is invalid, execution will be progressed further with the the valid values.Based on discussion, #2638 it was decided that even if some of the values in
--ownersand--membersoption is invalid execution should be made as faulty and NOT successful.Since we may not be able to validate this during the validation phase, this has to be handled during the execution phase.