There are issues with running multiple requests to add VIP Pool Members at the same time. Without the async lock in place, only the first vip pool member is added (the rest error with Status Code 400 - Unknown Error). This change was lifted from the way the VLAN resource is created, there are notes in there saying Cloud Control can't process more than one Async operation at a time without throwing the error above.
When this lock is put in place, I can create multiple pool members without having to rerun the plan, or separate into multiple resources (neither of which are scalable options).
There are issues with running multiple requests to add VIP Pool Members at the same time. Without the async lock in place, only the first vip pool member is added (the rest error with Status Code 400 - Unknown Error). This change was lifted from the way the VLAN resource is created, there are notes in there saying Cloud Control can't process more than one Async operation at a time without throwing the error above. When this lock is put in place, I can create multiple pool members without having to rerun the plan, or separate into multiple resources (neither of which are scalable options).