I'd like to manage my application as follows:
- Project A for DNS management,
- Project B for Cloud Run in staging environment,
- Project C for Cloud Run in production environment.
So for example, let's say I manage mydomain zone in Project A, with www.mydomain.com, app.mydomain.com and staging.mydomain.com CNAME records configured there.
In Project B I manage one Cloud Run service, staging-service.
In Project C I manage two Cloud Run services, www-service and app-service.
How can I map the services from Project B or C to the domains/subdomains in Project A?
Thanks for the help!