straight-magician-37467
06/26/2021, 9:53 PMProperty 'status' does not exist on type 'Service'. Did you mean 'statuses'?
https://github.com/pulumi/examples/blob/master/gcp-ts-docker-gcr-cloudrun/cloud-run-deploy/index.ts#L61
I tried substituting rubyService.status.url
with rubyService.statuses[0].url
but Google was unhappy with the resulting URL. Any idea how I might fix this?rubyService.statuses[0].url
actually fixed the issue. I had some other GCP config I had to straighten out as well which was compounding the issue.