Saturday, December 4, 2021

Google Cloud Serverless VPC + Cloud Functions

Summary


I'll show an example configuration of GCP Serverless VPC Access in this post.  The scenario here will be a Cloud Function that needs to access Memorystore (GCP managed Redis).  Memorystore is isolated in a VPC with a private range address - which is good as far as security is concerned.  To access that VPC from Cloud Functions, a Serverless VPC connector needs to be built.

Architecture




Memorystore Configuration




Serverless VPC Configuration



Cloud Function Configuration





Cloud Function Redis Client Connection Code


  1. const {createClient} = require('redis');
  2.  
  3. getClient() {
  4. const client = createClient({
  5. socket: {
  6. host: process.env.REDIS_HOST
  7. },
  8. password: process.env.REDIS_PASS
  9. });
  10. client.on('error', (err) => {
  11. throw Error(`redis client error: ${err}`);
  12. });
  13. return client;
  14. }
  15.  
  1. Copyright ©1993-2024 Joey E Whelan, All rights reserved.