Coder Social home page Coder Social logo

gcp-scheduled-functions-terraform's Introduction

GCP Scheduled Functions Terraform

Simple module for creating with Terraform the following flow on GCP:

  • dedicated service account used on the scheduled function

  • custom role with project IAM binding on the dedicated service account

  • gcs bucket hosting the function source code

  • a series of cloud functions with the uploaded code and respective cloud scheduler job with access to cloud function

Quickly testing the module

BUCKET=<YOUR_BUCKET_TO_CREATE>
PROJECT_ID=<YOUR_GCP_PROJECT>

cd examples/hello-world
terraform init
terraform plan -var "bucket=$BUCKET" -var "project_id=$PROJECT_ID" -out plan.out
terraform apply plan.out
cd ../../

If you change the source code just recreate the zip archive:

cd source-codes/code-1
zip code-1.zip main.py requirements.txt
cd ../../

cd source-codes/code-2
zip code-2.zip main.py requirements.txt
cd ../../

And relaunch Terraform to upload the new zip code and redeploy the function:

cd examples/hello-world
terraform plan -var "bucket=$BUCKET" -var "project_id=$PROJECT_ID" -out plan.out
terraform apply plan.out
cd ../../

Clean

cd examples/hello-world
terraform destroy -var "bucket=$BUCKET" -var "project_id=$PROJECT_ID"
cd ../../

gcp-scheduled-functions-terraform's People

Contributors

manuiade avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.