This message was deleted.
# google-cloud
s
This message was deleted.
r
I believe you miss
name
property
That's my implementation in JS
Copy code
const domainMapping = new gcp.cloudrun.DomainMapping(
    '<http://backend.client-one.example.com|backend.client-one.example.com>',
    {
      project: PROJECT_ID,
      location: region,
      metadata: {
        namespace: PROJECT_ID,
      },
      name: domainName,
      spec: {
        routeName: service.name,
        certificateMode: 'AUTOMATIC',
      },
    }
  );
b
Thank you, it seems I have overlooked the name input!
1