Skip to content

Commit

Permalink
fix(deps)!: Update Terraform terraform-google-modules/log-export/goog…
Browse files Browse the repository at this point in the history
…le to v10
  • Loading branch information
renovate-bot committed Oct 30, 2024
1 parent d0dd42d commit 35e79f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ resource "google_storage_bucket_object" "sample_data" {
# Set up Logs Router to route Cloud Run web access logs to BigQuery
module "log_export" {
source = "terraform-google-modules/log-export/google"
version = "~> 8.0"
version = "~> 10.0"

destination_uri = module.log_destination.destination_uri
filter = "log_name=~\".*run.googleapis.com%2Frequests.*\""
Expand All @@ -78,7 +78,7 @@ module "log_export" {
# Configure a Cloud Logging sink to route logs to BigQuery
module "log_destination" {
source = "terraform-google-modules/log-export/google//modules/bigquery"
version = "~> 8.0"
version = "~> 10.0"

project_id = var.project_id
dataset_name = "${replace(var.deployment_name, "-", "_")}_logsink"
Expand Down

0 comments on commit 35e79f8

Please sign in to comment.