Skip to content

Instantly share code, notes, and snippets.

View JonnyDaenen's full-sized avatar

Jonny Daenen JonnyDaenen

View GitHub Profile
@JonnyDaenen
JonnyDaenen / Google Cloud Function via Terraform
Created June 10, 2021 15:56
Deployment of Cloud Function via terraform
resource "google_storage_bucket" "default" {
name = "cf-bucket"
location = var.data_location_storage
}
data "local_file" "py_main" {
filename = "${path.root}/../../../../cloudfunction/main.py"
depends_on = [
# Make sure archive is created in apply stage
We couldn’t find that file to show.