Results 8 comments of felixmarch

It is already more than 1 year. Any plan to add this essential feature?

I tried the codes on [Fred-sun:Add_msgrpah_support](https://github.com/Fred-sun/ansible_collections_azure/tree/Add_msgrpah_support), it works great :thumbsup: :thumbsup: ``` --- - hosts: localhost gather_facts: false tasks: - name: Query all user infos azure.azcollection.azure_rm_msuser_info: all: true register: azure_rm_aduser_info...

Hi @Fred-sun I tried azure_rm_msuser to add new user like this ``` --- - hosts: localhost gather_facts: false tasks: - name: Add Users azure.azcollection.azure_rm_msuser: user_principal_name: "[email protected]" display_name: "xxx xxx" account_enabled:...

Cool, able to identify the error detail now. 👍 👍 ``` # ANSIBLE_STDOUT_CALLBACK=yaml ansible-playbook adduser_azure_playbook.yml -vvvvvv ... ... 'Create ad user fail, Msg {''code'': ''Request_BadRequest'', ''message'': "Invalid value specified for...

Is this **"give_name"** typos? (not "given_name"?) :thinking: - [plugins/modules/azure_rm_msuser.py](https://github.com/Fred-sun/ansible_collections_azure/blob/151030c71a6de0d0410c74382ac999f2a0bf9689/plugins/modules/azure_rm_msuser.py#L274) - [plugins/modules/azure_rm_msuser_info.py](https://github.com/Fred-sun/ansible_collections_azure/blob/151030c71a6de0d0410c74382ac999f2a0bf9689/plugins/modules/azure_rm_msuser_info.py#L190)

I noticed the update logic ([the "should_update" flag in azure_rm_aduser.py](https://github.com/Fred-sun/ansible_collections_azure/blob/900b961077c53b4ed5a217b0f71274d727d9ee62/plugins/modules/azure_rm_aduser.py#L314-L335)) was not implemented yet in [azure_rm_msuser.py](https://github.com/Fred-sun/ansible_collections_azure/blob/151030c71a6de0d0410c74382ac999f2a0bf9689/plugins/modules/azure_rm_msuser.py#L201-L220). So, when I tried to update the "display_name" against existing "user_principal_name", I got error...

Please perform these steps: ``` # git clone https://github.com/mkubecek/vmware-host-modules.git # cd vmware-host-modules/ # git checkout w17.5.1 # vim vmmon-only/common/vmx86.c #(and change line 52 on "#include " to "#include ") #...

> 2024-05-01T02:26:10.874Z In(05) host-3611 ./arch/x86/include/asm/timex.h:12:24: error: implicit declaration of function ‘random_get_entropy_fallback’; did you mean ‘random_get_entropy’? [-Wimplicit-function-declaration] looks like the version of the vmware modules you are using isn't compatible with...