The working cloudfunction2 module and example.
Add module.cloudfunction2.tf to your code:-
module cloudfunction2 {
source ="jameswoolfenden/cloudfunction2/gcp"
version = "0.0.4"
common_tags = var.common_tags
lambda = var.lambda
project = var.project
region = var.region
source_zip_path = var.source_zip_path
}
See examplea.auto.tfvars for the data to drive the module.
No requirements.
Name | Version |
---|---|
n/a | |
random | n/a |
No modules.
Name | Type |
---|---|
google_cloud_run_service_iam_member.invoker | resource |
google_cloud_scheduler_job.invoke_cloud_function | resource |
google_cloudfunctions2_function.function | resource |
google_cloudfunctions2_function_iam_member.invoker | resource |
google_storage_bucket_object.archive | resource |
random_string.name | resource |
google_project.project | data source |
Name | Description | Type | Default | Required |
---|---|---|---|---|
body | n/a | string |
n/a | yes |
bucketname | n/a | string |
n/a | yes |
entry_point | n/a | string |
n/a | yes |
env_vars | n/a | map(any) |
n/a | yes |
function_name | n/a | string |
n/a | yes |
job_name | n/a | string |
"invoke-btdelete" |
no |
key_id | n/a | string |
n/a | yes |
location | n/a | string |
n/a | yes |
project | n/a | string |
n/a | yes |
retry_config | n/a | object({ |
{ |
no |
schedule | n/a | string |
"0 0 * * *" |
no |
serviceaccount_email | n/a | string |
n/a | yes |
source_zip_path | n/a | string |
n/a | yes |
time_zone | n/a | string |
"America/Los_Angeles" |
no |
Name | Description |
---|---|
account | n/a |
auth | n/a |
bucket | n/a |
files | n/a |
function | n/a |
job | n/a |
The Terraform resource required is:
resource "google_project_iam_custom_role" "terraform_pike" {
project = "pike"
role_id = "terraform_pike"
title = "terraform_pike"
description = "A user with least privileges"
permissions = [
"cloudscheduler.jobs.create",
"cloudscheduler.jobs.delete",
"cloudscheduler.jobs.enable",
"cloudscheduler.jobs.get",
"cloudscheduler.jobs.update",
"resourcemanager.projects.get",
"storage.objects.create",
"storage.objects.delete",
"storage.objects.get"
]
}
Check out these related projects.
- terraform-aws-codecommit - Storing ones code
Got a question?
File a GitHub issue.
Please use the issue tracker to report any bugs or file feature requests.
Copyright © 2019-2023 James Woolfenden
See LICENSE for full details.
Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.