Hello, i am trying to add about 500 users to a single tenant, so every bucket in this specific tenant has its own key. My Playbook worked for 250 Users. I am using na_sg_org_user. After successfully adding 350 users the module fails in the prechecks, because it can not find the group ("Invalid unique_group supplied: 'group/xxxxxx' not found") . I am able to add the useres manually. The tasks also fails for already existing users after the 350th user, before they are marked as already existing. Looking at the python code it looks like before doing anything, the module ask for existing groups to verify the input. Is this list maybe limited to 350 users? Does anybody experience this problem as well? Is this maybe a bug?
- name: Create user na_sg_org_user: api_url: "{{ grid_admin_base_url }}" auth_token: "{{ auth_for_tenant.json.data }}" validate_certs: false state: present full_name: "xxxx-{{ item }}" unique_name: "user/xxxx-{{ item }}" member_of: "group/xxxx-{{ item }}" loop: "{{ name_list }}"