diff --git a/skills/cloud/google-cloud-recipe-onboarding/SKILL.md b/skills/cloud/google-cloud-recipe-onboarding/SKILL.md index 2242bb7f27..02d57d0618 100644 --- a/skills/cloud/google-cloud-recipe-onboarding/SKILL.md +++ b/skills/cloud/google-cloud-recipe-onboarding/SKILL.md @@ -95,19 +95,23 @@ default](https://docs.cloud.google.com/service-usage/docs/enabled-service#defaul ### 6. Deploy Your First Resource -Choose a simple entry point based on your needs: - -**[Cloud Run](https://docs.cloud.google.com/run/docs) (Recommended for Apps):** -Deploy a containerized "Hello World" app. - -**[Compute Engine](https://docs.cloud.google.com/compute/docs):** Create a small -Linux VM (e.g., `e2-micro` which is part of the Always Free tier in certain -regions). - **[Cloud Storage](https://docs.cloud.google.com/storage/docs):** -Create a bucket to store files. - -Example (Cloud Run): - -```bash - gcloud run deploy hello-world \ - --image=gcr.io/cloudrun/hello \ --platform=managed \ --region=us-central1 \ +Choose a simple entry point based on your needs: + +- **[Cloud Run](https://docs.cloud.google.com/run/docs) (Recommended for Apps):** + Deploy a containerized "Hello World" app. +- **[Compute Engine](https://docs.cloud.google.com/compute/docs):** Create a small + Linux VM (e.g., `e2-micro` which is part of the Always Free tier in certain + regions). +- **[Cloud Storage](https://docs.cloud.google.com/storage/docs):** Create a bucket + to store files. + +Example (Cloud Run): + +```bash +gcloud run deploy hello-world \ + --image=gcr.io/cloudrun/hello \ + --platform=managed \ + --region=us-central1 \ --allow-unauthenticated ```