Complete the code to set an environment variable in a Cloud Run service.
gcloud run deploy my-service --image gcr.io/my-project/my-image --set-env-vars [1]The --set-env-vars flag is used to set environment variables like API_KEY=12345 when deploying a Cloud Run service.
Complete the command to access a secret named 'db-password' from Secret Manager in a Cloud Run service.
gcloud run deploy my-service --image gcr.io/my-project/my-image --set-secrets DB_PASS=[1]Secrets in GCP are referenced by their full resource path including project, secret name, and version.
Fix the error in the command to deploy a Cloud Run service with a secret environment variable.
gcloud run deploy my-service --image gcr.io/my-project/my-image --set-secrets DB_PASS=[1]The secret reference must include the version, such as /versions/latest, to be valid.
Fill both blanks to create a command that sets two environment variables in Cloud Run.
gcloud run deploy my-service --image gcr.io/my-project/my-image --set-env-vars [1],[2]
Multiple environment variables are set by separating key=value pairs with commas.
Fill all three blanks to deploy a Cloud Run service with one environment variable and two secrets.
gcloud run deploy my-service --image gcr.io/my-project/my-image --set-env-vars [1] --set-secrets DB_PASS=[2],API_KEY=[3]
Set environment variables and secrets separately. Secrets require full resource paths with versions.