go

command module
v0.0.0-...-79a6b60 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 25, 2023 License: Apache-2.0 Imports: 10 Imported by: 0

README

Berglas Cloud Run Example - Go

This guide assumes you have followed the setup instructions in the README. Specifically, it is assumed that you have created a project, Cloud Storage bucket, and Cloud KMS key.

  1. Make sure you are in the examples/cloudrun/go folder before continuing!

  2. Export the environment variables for your configuration:

    Using Secret Manager storage:

    export PROJECT_ID=my-project
    

    Using Cloud Storage storage:

    export PROJECT_ID=my-project
    export BUCKET_ID=my-bucket
    export KMS_KEY=projects/${PROJECT_ID}/locations/global/keyRings/berglas/cryptoKeys/berglas-key
    
  3. Create two secrets using the berglas CLI (see README for installation instructions):

    Using Secret Manager storage:

    berglas create sm://${PROJECT_ID}/api-key "xxx-yyy-zzz"
    
    berglas create sm://${PROJECT_ID}/tls-key "=== BEGIN RSA PRIVATE KEY..."
    

    Using Cloud Storage storage:

    berglas create ${BUCKET_ID}/api-key "xxx-yyy-zzz" \
      --key ${KMS_KEY}
    
    berglas create ${BUCKET_ID}/tls-key "=== BEGIN RSA PRIVATE KEY..." \
      --key ${KMS_KEY}
    
  4. Create a dedicated service account for the Cloud Run service:

    gcloud iam service-accounts create "cloudrun-berglas-go" \
      --project ${PROJECT_ID}
    
    export SA_EMAIL=cloudrun-berglas-go@${PROJECT_ID}.iam.gserviceaccount.com
    
  5. Grant the service account access to the secrets:

    Using Secret Manager storage:

    berglas grant sm://${PROJECT_ID}/api-key --member serviceAccount:${SA_EMAIL}
    berglas grant sm://${PROJECT_ID}/tls-key --member serviceAccount:${SA_EMAIL}
    

    Using Google Cloud storage:

    berglas grant ${BUCKET_ID}/api-key --member serviceAccount:${SA_EMAIL}
    berglas grant ${BUCKET_ID}/tls-key --member serviceAccount:${SA_EMAIL}
    
  6. Build a container using Cloud Build and publish it to Container Registry:

    gcloud builds submit \
      --project ${PROJECT_ID} \
      --tag gcr.io/${PROJECT_ID}/berglas-example-go:0.0.1 \
      .
    
  7. Deploy the container on Cloud Run:

    gcloud run deploy berglas-example-go \
      --project ${PROJECT_ID} \
      --platform managed \
      --region us-central1 \
      --image gcr.io/${PROJECT_ID}/berglas-example-go:0.0.1 \
      --memory 1G \
      --concurrency 10 \
      --set-env-vars "API_KEY=berglas://${BUCKET_ID}/api-key,TLS_KEY=berglas://${BUCKET_ID}/tls-key?destination=tempfile" \
      --service-account ${SA_EMAIL} \
      --allow-unauthenticated
    
  8. Access the service:

    curl $(gcloud run services describe berglas-example-go \
      --project ${PROJECT_ID} \
      --platform managed \
      --region us-central1 \
      --format 'value(status.address.url)')
    
  9. (Optional) Cleanup the deployment:

    gcloud run services delete berglas-example-go \
      --quiet \
      --platform managed \
      --project ${PROJECT_ID} \
      --region us-central1
    
    IMAGE=gcr.io/${PROJECT_ID}/berglas-example-go
    for DIGEST in $(gcloud container images list-tags ${IMAGE} --format='get(digest)'); do
      gcloud container images delete --quiet --force-delete-tags "${IMAGE}@${DIGEST}"
    done
    
  10. (Optional) Revoke access to the secrets:

    Using Secret Manager storage:

    berglas revoke sm://${PROJECT_ID}/api-key --member serviceAccount:${SA_EMAIL}
    berglas revoke sm://${PROJECT_ID}/tls-key --member serviceAccount:${SA_EMAIL}
    

    Using Cloud Storage storage:

    berglas revoke ${BUCKET_ID}/api-key --member serviceAccount:${SA_EMAIL}
    berglas revoke ${BUCKET_ID}/tls-key --member serviceAccount:${SA_EMAIL}
    
  11. (Optional) Delete the service account:

    gcloud iam service-accounts delete "${SA_EMAIL}" \
      --quiet \
      --project ${PROJECT_ID}
    

Documentation

The Go Gopher

There is no documentation for this package.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL