Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/cloud_function2_gcs_source/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ resource "google_storage_bucket_object" "function-source" {

module "cloud_functions2" {
source = "GoogleCloudPlatform/cloud-functions/google"
version = "~> 0.7"
version = "~> 0.9"

project_id = var.project_id
function_name = "function2-gcs-source-py"
Expand Down
2 changes: 1 addition & 1 deletion examples/cloud_function2_pubsub_trigger/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ module "pubsub" {

module "cloud_functions2" {
source = "GoogleCloudPlatform/cloud-functions/google"
version = "~> 0.7"
version = "~> 0.9"

project_id = var.project_id
function_name = "function2-pubsub-trigger-py"
Expand Down
6 changes: 3 additions & 3 deletions examples/secure_cloud_function_bigquery_trigger/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ resource "random_id" "random_folder_suffix" {

module "secure_harness" {
source = "GoogleCloudPlatform/cloud-run/google//modules/secure-serverless-harness"
version = "~> 0.27"
version = "~> 0.32"

billing_account = var.billing_account
security_project_name = "prj-scf-sec-bq"
Expand Down Expand Up @@ -224,7 +224,7 @@ resource "time_sleep" "wait_upload_certificate" {

module "secure_web_proxy" {
source = "GoogleCloudPlatform/cloud-functions/google//modules/secure-web-proxy"
version = "~> 0.6"
version = "~> 0.9"

project_id = module.secure_harness.network_project_id[0]
region = local.region
Expand Down Expand Up @@ -273,7 +273,7 @@ resource "google_project_iam_member" "network_service_agent_editor" {

module "secure_cloud_function" {
source = "GoogleCloudPlatform/cloud-functions/google//modules/secure-cloud-function"
version = "~> 0.6"
version = "~> 0.9"

function_name = "secure-cloud-function-bigquery"
function_description = "Logs when there is a new row in the BigQuery"
Expand Down
6 changes: 3 additions & 3 deletions examples/secure_cloud_function_internal_server/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ resource "random_id" "random_folder_suffix" {

module "secure_harness" {
source = "GoogleCloudPlatform/cloud-run/google//modules/secure-serverless-harness"
version = "~> 0.27"
version = "~> 0.32"

billing_account = var.billing_account
security_project_name = "prj-scf-security-cf"
Expand Down Expand Up @@ -178,7 +178,7 @@ resource "time_sleep" "wait_upload_certificate" {

module "secure_web_proxy" {
source = "GoogleCloudPlatform/cloud-functions/google//modules/secure-web-proxy"
version = "~> 0.6"
version = "~> 0.9"

project_id = module.secure_harness.network_project_id[0]
region = local.region
Expand Down Expand Up @@ -225,7 +225,7 @@ resource "google_project_iam_member" "network_service_agent_editor" {

module "secure_cloud_function" {
source = "GoogleCloudPlatform/cloud-functions/google//modules/secure-cloud-function"
version = "~> 0.6"
version = "~> 0.9"

function_name = "secure-function2-internal-server"
function_description = "Secure cloud function example"
Expand Down
6 changes: 3 additions & 3 deletions examples/secure_cloud_function_with_sql/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ resource "random_id" "random_folder_suffix" {

module "secure_harness" {
source = "GoogleCloudPlatform/cloud-run/google//modules/secure-serverless-harness"
version = "~> 0.27"
version = "~> 0.32"

billing_account = var.billing_account
security_project_name = "prj-scf-sec-sql"
Expand Down Expand Up @@ -232,7 +232,7 @@ resource "time_sleep" "wait_upload_certificate" {

module "secure_web_proxy" {
source = "GoogleCloudPlatform/cloud-functions/google//modules/secure-web-proxy"
version = "~> 0.6"
version = "~> 0.9"

project_id = module.secure_harness.network_project_id[0]
region = local.region
Expand Down Expand Up @@ -508,7 +508,7 @@ resource "google_project_iam_member" "network_service_agent_editor" {

module "secure_cloud_function" {
source = "GoogleCloudPlatform/cloud-functions/google//modules/secure-cloud-function"
version = "~> 0.6"
version = "~> 0.9"

function_name = "secure-cloud-function-cloud-sql"
function_description = "Read from Cloud SQL"
Expand Down
2 changes: 1 addition & 1 deletion modules/secure-cloud-function/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

module "cloud_serverless_network" {
source = "GoogleCloudPlatform/cloud-run/google//modules/secure-serverless-net"
version = "~> 0.27"
version = "~> 0.32"

connector_name = var.connector_name
subnet_name = var.subnet_name
Expand Down