For those who knows GCP well, it has some "limitations" about user and permissions control.
The Datastore, for example, doesn't have any way to manage user roles of the database itself and it has only the IAM of the plataform.
Because of that, Google's employees advise their customers to use multiple projects and folders of the GCP to have more control in that. I have seen it for a while.
The question is: How to connect to multiple resources of multiple projects of GCP on Spring Cloud GCP? We have applications that should access Datastore and other resources from different projects and I'm struggling here with that.
Even if Spring Cloud GCP doesn't support for multiple GCP projects, there is any workaround?
Thank you all.