guillaume blaquiere
1 min readFeb 20, 2020

Hello and thanks for reading.

Going serverless is great for scalability, but also for all the boring part of system administration (patching, OS update, network set up, backup and redundancy,…). Serveless saves a lot of human toil (and cost!)

Your 2 questions are very interesting. In summary

  1. DDoS: If you deploy your Cloud Run or Cloud Function in private mode (I mean you have to be authenticated to reach the service) or if you protect your App Engine with IAP, you have nothing to do! The traffic and the security checks are performed on Google Front End. You pay nothing and you are protected!
    If you deploy in public mode (I mean all unauthenticated users can access to your API, or you choose to not use Google Authentication method but your own authentication method), there is nothing today. A new feature will come soon and you will be able to plug Cloud Armor on it to protect your services
  2. About the limit, you have 2 solutions. You can set a max instances on Cloud Run, Cloud Function and App Engine and thus limit the maximum number of instances. You can also checkout my article on Cloud Endpoint and rate limit that you can set up on your APIs.

Hope this help you to be more confident in the serverless solution!

Sign up to discover human stories that deepen your understanding of the world.

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

guillaume blaquiere
guillaume blaquiere

Written by guillaume blaquiere

GDE cloud platform, Group Data Architect @Carrefour, speaker, writer and polyglot developer, Google Cloud platform 3x certified, serverless addict and Go fan.

Responses (1)

Write a response

Thanks for the details.
I think I might be missing something. If you mean protecting the cloud functions with another service to reach them, aren’t we limited by non-serverless tech which sits as a gate-keeper to the functions?
Consider we have a…

--