-
Notifications
You must be signed in to change notification settings - Fork 128
Description
It seems like the replicator controller is a black box that takes ResourceSlice CRs and generates Identity CRs, while taking the provided credentials to generate AWS IAM users. I am just assuming at this point since I could not find documentation that covers this design (or the rationale behind it), but it's an educated guess based on the CRDs.
In our environment, it is NOT okay to simply generate random AWS IAM users, especially if we can't control their naming convention. These liqo-* users don't even seem to have any particular policies or permissions, which is even more confusing in our use case (why not just stick with the provided credentials to do whatever it needs?)
Is it not possible to enable the ResourceSlice to take the authParams that the Identity CR should use, and if these are not provided, only then allow the Identity CR to generate random ones like it is doing already?
I have tried patching the Identity CR with predefined credentials, and I can see resources being reflected accordingly, but I would like to make sure this doesn't break anything else, or if it's only a temporary workaround that will break something in the long run.
Thanks!