Skip to content

Commit

Permalink
chore(deps): Update Terraform GoogleCloudPlatform/cloud-run/google to…
Browse files Browse the repository at this point in the history
… ~> 0.11 (#206)

Co-authored-by: Prabhu <18209477+prabhu34@users.noreply.github.com>
  • Loading branch information
renovate-bot and prabhu34 authored Jun 5, 2024
1 parent be49330 commit abb893e
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion examples/cloud_run_vpc_connector/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ module "service_account" {

module "cloud_run" {
source = "GoogleCloudPlatform/cloud-run/google"
version = "~> 0.10"
version = "~> 0.11"

service_name = "ci-cloud-run-sc"
project_id = var.project_id
Expand Down
2 changes: 1 addition & 1 deletion examples/secure_cloud_run/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ locals {

module "secure_cloud_run" {
source = "GoogleCloudPlatform/cloud-run/google//modules/secure-cloud-run"
version = "~> 0.10"
version = "~> 0.11"

connector_name = "con-run"
subnet_name = "vpc-subnet"
Expand Down
4 changes: 2 additions & 2 deletions examples/secure_cloud_run_standalone/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ resource "random_id" "random_folder_suffix" {

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

billing_account = var.billing_account
security_project_name = "prj-kms-secure-cloud-run"
Expand Down Expand Up @@ -65,7 +65,7 @@ resource "null_resource" "copy_image" {

module "secure_cloud_run" {
source = "GoogleCloudPlatform/cloud-run/google//modules/secure-cloud-run"
version = "~> 0.10"
version = "~> 0.11"

location = local.location
region = local.region
Expand Down
2 changes: 1 addition & 1 deletion examples/simple_cloud_run/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ module "service_account" {

module "cloud_run" {
source = "GoogleCloudPlatform/cloud-run/google"
version = "~> 0.10"
version = "~> 0.11"

service_name = "ci-cloud-run"
project_id = var.project_id
Expand Down
2 changes: 1 addition & 1 deletion examples/simple_cloud_run_with_cmek/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ resource "google_project_service_identity" "serverless_sa" {

module "cloud_run" {
source = "GoogleCloudPlatform/cloud-run/google"
version = "~> 0.10"
version = "~> 0.11"

service_name = "ci-cloud-run"
project_id = var.project_id
Expand Down
2 changes: 1 addition & 1 deletion examples/simple_job_exec/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

module "job" {
source = "GoogleCloudPlatform/cloud-run/google//modules/job-exec"
version = "~> 0.10"
version = "~> 0.11"

project_id = var.project_id
name = "simple-job"
Expand Down
2 changes: 1 addition & 1 deletion examples/v2/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ module "service_account" {

module "cloud_run_v2" {
source = "GoogleCloudPlatform/cloud-run/google//modules/v2"
version = "~> 0.10"
version = "~> 0.11"

service_name = "ci-cloud-run-v2"
project_id = var.project_id
Expand Down
6 changes: 3 additions & 3 deletions modules/v2/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ module "cloud_run_core" {
project_id = var.project_id
service_name = "hello-world"
location = "us-central1"
containers = {
hello-world = {
containers = [
{
container_image = "us-docker.pkg.dev/cloudrun/container/hello"
}
}
]
}
```

Expand Down

0 comments on commit abb893e

Please sign in to comment.