#Adding 500 Users to one S3 Tenant fails

1 messages · Page 1 of 1 (latest)

humble barn
#

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 }}"

signal arch
#

Hi, I’ve seen similar limitations when using the REST api instead of modules, seems to be a limit of 350 when retrieving data with GET even when setting the limit higher.