I have created a job named "my-job" on GCP Cloud Run Jobs. I want to grant principal A the Cloud Run Admin role and use an IAM condition to allow them to execute only "my-job".
I initially thought that using the condition(CEL) resource.name.endsWith("my-job")
would work well. However, it appears that resource.name is not supported for Cloud Run. (https://cloud.google.com/iam/docs/conditions-attribute-reference#resource-name)
Is there any alternative way to filter and allow execution based on the job name?