Skip to content

Commit

Permalink
fix(TPG>=5.12)!: Update Terraform GoogleCloudPlatform/cloud-run/googl…
Browse files Browse the repository at this point in the history
…e to ~> 0.11.0 (#125)

Co-authored-by: Andrew Peabody <andrewpeabody@google.com>
  • Loading branch information
renovate-bot and apeabody committed May 22, 2024
1 parent 17bfffb commit 0c64ca2
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion 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.10.0"
version = "~> 0.11.0"

billing_account = var.billing_account
security_project_name = "prj-scf-security"
Expand Down
2 changes: 1 addition & 1 deletion 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.10.0"
version = "~> 0.11.0"

billing_account = var.billing_account
security_project_name = "prj-scf-security"
Expand Down
2 changes: 1 addition & 1 deletion 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.10.0"
version = "~> 0.11.0"

billing_account = var.billing_account
security_project_name = "prj-scf-security"
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.10.0"
version = "~> 0.11.0"

connector_name = var.connector_name
subnet_name = var.subnet_name
Expand Down
1 change: 1 addition & 0 deletions modules/secure-web-proxy/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ resource "google_service_networking_connection" "private_service_connect" {
network = var.network_id
service = "servicenetworking.googleapis.com"
reserved_peering_ranges = [google_compute_global_address.private_ip_allocation.name]
deletion_policy = "ABANDON"

depends_on = [
google_compute_global_address.private_ip_allocation
Expand Down
4 changes: 2 additions & 2 deletions modules/secure-web-proxy/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ terraform {
required_providers {
google = {
source = "hashicorp/google"
version = ">= 4.74, < 6.0"
version = ">= 5.12, < 6"
}

google-beta = {
source = "hashicorp/google-beta"
version = "< 6.0"
version = "< 6"
}

null = {
Expand Down

0 comments on commit 0c64ca2

Please sign in to comment.