From 3a574e33341485f91de4c17821d60d8f2145263a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 2 May 2025 14:58:50 +0000 Subject: [PATCH] chore(deps): Update Terraform terraform-google-modules/log-export/google to v11 --- examples/bigquery/billing_account/main.tf | 4 ++-- examples/bigquery/folder/main.tf | 4 ++-- examples/bigquery/organization/main.tf | 4 ++-- examples/bigquery/project/main.tf | 4 ++-- examples/bq-log-alerting/main.tf | 2 +- examples/datadog-sink/main.tf | 4 ++-- examples/logbucket/folder/main.tf | 4 ++-- examples/logbucket/organization/main.tf | 4 ++-- examples/logbucket/project/main.tf | 8 ++++---- examples/project/project/main.tf | 4 ++-- examples/pubsub/billing_account/main.tf | 4 ++-- examples/pubsub/folder/main.tf | 4 ++-- examples/pubsub/organization/main.tf | 4 ++-- examples/pubsub/project/main.tf | 4 ++-- examples/splunk-sink/main.tf | 4 ++-- examples/storage/billing_account/main.tf | 4 ++-- examples/storage/folder/main.tf | 4 ++-- examples/storage/organization/main.tf | 4 ++-- examples/storage/project/main.tf | 4 ++-- 19 files changed, 39 insertions(+), 39 deletions(-) diff --git a/examples/bigquery/billing_account/main.tf b/examples/bigquery/billing_account/main.tf index 76e78325..910b9ec5 100644 --- a/examples/bigquery/billing_account/main.tf +++ b/examples/bigquery/billing_account/main.tf @@ -16,7 +16,7 @@ module "log_export" { source = "terraform-google-modules/log-export/google" - version = "~> 10.0" + version = "~> 11.0" destination_uri = module.destination.destination_uri log_sink_name = "bigquery_example_logsink" @@ -27,7 +27,7 @@ module "log_export" { module "destination" { source = "terraform-google-modules/log-export/google//modules/bigquery" - version = "~> 10.0" + version = "~> 11.0" project_id = var.project_id dataset_name = "bigquery_example" diff --git a/examples/bigquery/folder/main.tf b/examples/bigquery/folder/main.tf index 3af31a73..ee48297d 100644 --- a/examples/bigquery/folder/main.tf +++ b/examples/bigquery/folder/main.tf @@ -22,7 +22,7 @@ resource "random_string" "suffix" { module "log_export" { source = "terraform-google-modules/log-export/google" - version = "~> 10.0" + version = "~> 11.0" destination_uri = module.destination.destination_uri filter = "resource.type = gce_instance" @@ -34,7 +34,7 @@ module "log_export" { module "destination" { source = "terraform-google-modules/log-export/google//modules/bigquery" - version = "~> 10.0" + version = "~> 11.0" project_id = var.project_id dataset_name = "bq_folder_${random_string.suffix.result}" diff --git a/examples/bigquery/organization/main.tf b/examples/bigquery/organization/main.tf index 06c1aad1..0f3857bf 100644 --- a/examples/bigquery/organization/main.tf +++ b/examples/bigquery/organization/main.tf @@ -22,7 +22,7 @@ resource "random_string" "suffix" { module "log_export" { source = "terraform-google-modules/log-export/google" - version = "~> 10.0" + version = "~> 11.0" destination_uri = module.destination.destination_uri filter = "resource.type = gce_instance" @@ -34,7 +34,7 @@ module "log_export" { module "destination" { source = "terraform-google-modules/log-export/google//modules/bigquery" - version = "~> 10.0" + version = "~> 11.0" project_id = var.project_id dataset_name = "bq_org_${random_string.suffix.result}" diff --git a/examples/bigquery/project/main.tf b/examples/bigquery/project/main.tf index 51c1e6ff..b2e890e0 100644 --- a/examples/bigquery/project/main.tf +++ b/examples/bigquery/project/main.tf @@ -22,7 +22,7 @@ resource "random_string" "suffix" { module "log_export" { source = "terraform-google-modules/log-export/google" - version = "~> 10.0" + version = "~> 11.0" destination_uri = module.destination.destination_uri filter = "resource.type = gce_instance" @@ -34,7 +34,7 @@ module "log_export" { module "destination" { source = "terraform-google-modules/log-export/google//modules/bigquery" - version = "~> 10.0" + version = "~> 11.0" project_id = var.project_id dataset_name = "bq_project_${random_string.suffix.result}" diff --git a/examples/bq-log-alerting/main.tf b/examples/bq-log-alerting/main.tf index 9ff99bb4..39c6b27e 100644 --- a/examples/bq-log-alerting/main.tf +++ b/examples/bq-log-alerting/main.tf @@ -16,7 +16,7 @@ module "bq-log-alerting" { source = "terraform-google-modules/log-export/google//modules/bq-log-alerting" - version = "~> 10.0" + version = "~> 11.0" logging_project = var.logging_project bigquery_location = var.bigquery_location diff --git a/examples/datadog-sink/main.tf b/examples/datadog-sink/main.tf index f8dfc027..c0f90d2a 100755 --- a/examples/datadog-sink/main.tf +++ b/examples/datadog-sink/main.tf @@ -54,7 +54,7 @@ resource "google_project_iam_member" "monitoring-viewer" { module "log_export" { source = "terraform-google-modules/log-export/google" - version = "~> 10.0" + version = "~> 11.0" destination_uri = module.destination.destination_uri log_sink_name = "test-datadog-sink" @@ -65,7 +65,7 @@ module "log_export" { module "destination" { source = "terraform-google-modules/log-export/google//modules/pubsub" - version = "~> 10.0" + version = "~> 11.0" project_id = var.project_id topic_name = "datadog-sink" diff --git a/examples/logbucket/folder/main.tf b/examples/logbucket/folder/main.tf index c7cd7dcc..e8452981 100644 --- a/examples/logbucket/folder/main.tf +++ b/examples/logbucket/folder/main.tf @@ -22,7 +22,7 @@ resource "random_string" "suffix" { module "log_export" { source = "terraform-google-modules/log-export/google" - version = "~> 10.0" + version = "~> 11.0" destination_uri = module.destination.destination_uri filter = "resource.type = gce_instance" @@ -34,7 +34,7 @@ module "log_export" { module "destination" { source = "terraform-google-modules/log-export/google//modules/logbucket" - version = "~> 10.0" + version = "~> 11.0" project_id = var.project_id name = "logbucket_folder_${random_string.suffix.result}" diff --git a/examples/logbucket/organization/main.tf b/examples/logbucket/organization/main.tf index 4b71ac70..936ec71f 100644 --- a/examples/logbucket/organization/main.tf +++ b/examples/logbucket/organization/main.tf @@ -22,7 +22,7 @@ resource "random_string" "suffix" { module "log_export" { source = "terraform-google-modules/log-export/google" - version = "~> 10.0" + version = "~> 11.0" destination_uri = module.destination.destination_uri filter = "resource.type = gce_instance" @@ -34,7 +34,7 @@ module "log_export" { module "destination" { source = "terraform-google-modules/log-export/google//modules/logbucket" - version = "~> 10.0" + version = "~> 11.0" project_id = var.project_id name = "logbucket_org_${random_string.suffix.result}" diff --git a/examples/logbucket/project/main.tf b/examples/logbucket/project/main.tf index 21a6057d..648edd12 100644 --- a/examples/logbucket/project/main.tf +++ b/examples/logbucket/project/main.tf @@ -22,7 +22,7 @@ resource "random_string" "suffix" { module "log_export" { source = "terraform-google-modules/log-export/google" - version = "~> 10.0" + version = "~> 11.0" destination_uri = module.destination.destination_uri filter = "resource.type = gce_instance" @@ -34,7 +34,7 @@ module "log_export" { module "destination" { source = "terraform-google-modules/log-export/google//modules/logbucket" - version = "~> 10.0" + version = "~> 11.0" project_id = var.project_destination_logbkt_id name = "logbucket_from_other_prj_${random_string.suffix.result}" @@ -50,7 +50,7 @@ module "destination" { #-------------------------------------# module "log_export_same_proj" { source = "terraform-google-modules/log-export/google" - version = "~> 10.0" + version = "~> 11.0" destination_uri = module.dest_same_proj.destination_uri filter = "resource.type = gce_instance" @@ -62,7 +62,7 @@ module "log_export_same_proj" { module "dest_same_proj" { source = "terraform-google-modules/log-export/google//modules/logbucket" - version = "~> 10.0" + version = "~> 11.0" project_id = var.project_destination_logbkt_id name = "logbucket_from_same_projct_${random_string.suffix.result}" diff --git a/examples/project/project/main.tf b/examples/project/project/main.tf index cfd5f196..63acba8b 100644 --- a/examples/project/project/main.tf +++ b/examples/project/project/main.tf @@ -22,7 +22,7 @@ resource "random_string" "suffix" { module "log_export" { source = "terraform-google-modules/log-export/google" - version = "~> 10.0" + version = "~> 11.0" destination_uri = module.destination.destination_uri filter = "resource.type = gce_instance" @@ -34,7 +34,7 @@ module "log_export" { module "destination" { source = "terraform-google-modules/log-export/google//modules/project" - version = "~> 10.0" + version = "~> 11.0" project_id = var.project_id log_sink_writer_identity = module.log_export.writer_identity diff --git a/examples/pubsub/billing_account/main.tf b/examples/pubsub/billing_account/main.tf index 71c53795..554ca94b 100644 --- a/examples/pubsub/billing_account/main.tf +++ b/examples/pubsub/billing_account/main.tf @@ -16,7 +16,7 @@ module "log_export" { source = "terraform-google-modules/log-export/google" - version = "~> 10.0" + version = "~> 11.0" destination_uri = module.destination.destination_uri log_sink_name = "pubsub_example_logsink" @@ -27,7 +27,7 @@ module "log_export" { module "destination" { source = "terraform-google-modules/log-export/google//modules/pubsub" - version = "~> 10.0" + version = "~> 11.0" project_id = var.project_id topic_name = "pubsub-example" diff --git a/examples/pubsub/folder/main.tf b/examples/pubsub/folder/main.tf index b508fb42..f8684b31 100644 --- a/examples/pubsub/folder/main.tf +++ b/examples/pubsub/folder/main.tf @@ -22,7 +22,7 @@ resource "random_string" "suffix" { module "log_export" { source = "terraform-google-modules/log-export/google" - version = "~> 10.0" + version = "~> 11.0" destination_uri = module.destination.destination_uri filter = "resource.type = gce_instance" @@ -34,7 +34,7 @@ module "log_export" { module "destination" { source = "terraform-google-modules/log-export/google//modules/pubsub" - version = "~> 10.0" + version = "~> 11.0" project_id = var.project_id topic_name = "pubsub-folder-${random_string.suffix.result}" diff --git a/examples/pubsub/organization/main.tf b/examples/pubsub/organization/main.tf index 232f96fb..435d3310 100644 --- a/examples/pubsub/organization/main.tf +++ b/examples/pubsub/organization/main.tf @@ -22,7 +22,7 @@ resource "random_string" "suffix" { module "log_export" { source = "terraform-google-modules/log-export/google" - version = "~> 10.0" + version = "~> 11.0" destination_uri = module.destination.destination_uri filter = "resource.type = gce_instance" @@ -34,7 +34,7 @@ module "log_export" { module "destination" { source = "terraform-google-modules/log-export/google//modules/pubsub" - version = "~> 10.0" + version = "~> 11.0" project_id = var.project_id topic_name = "pubsub-org-${random_string.suffix.result}" diff --git a/examples/pubsub/project/main.tf b/examples/pubsub/project/main.tf index a89a90e7..1cd1121e 100644 --- a/examples/pubsub/project/main.tf +++ b/examples/pubsub/project/main.tf @@ -22,7 +22,7 @@ resource "random_string" "suffix" { module "log_export" { source = "terraform-google-modules/log-export/google" - version = "~> 10.0" + version = "~> 11.0" destination_uri = module.destination.destination_uri filter = "resource.type = gce_instance" @@ -34,7 +34,7 @@ module "log_export" { module "destination" { source = "terraform-google-modules/log-export/google//modules/pubsub" - version = "~> 10.0" + version = "~> 11.0" project_id = var.project_id topic_labels = { topic_key : "topic_label" } diff --git a/examples/splunk-sink/main.tf b/examples/splunk-sink/main.tf index 4a93c086..3f24b17e 100644 --- a/examples/splunk-sink/main.tf +++ b/examples/splunk-sink/main.tf @@ -17,7 +17,7 @@ module "log_export" { source = "terraform-google-modules/log-export/google" - version = "~> 10.0" + version = "~> 11.0" destination_uri = module.destination.destination_uri log_sink_name = "test-splunk-sink" @@ -27,7 +27,7 @@ module "log_export" { module "destination" { source = "terraform-google-modules/log-export/google//modules/pubsub" - version = "~> 10.0" + version = "~> 11.0" project_id = var.project_id topic_name = "splunk-sink" diff --git a/examples/storage/billing_account/main.tf b/examples/storage/billing_account/main.tf index 6e928ab6..8d465b49 100644 --- a/examples/storage/billing_account/main.tf +++ b/examples/storage/billing_account/main.tf @@ -16,7 +16,7 @@ module "log_export" { source = "terraform-google-modules/log-export/google" - version = "~> 10.0" + version = "~> 11.0" destination_uri = module.destination.destination_uri log_sink_name = "storage_example_logsink" @@ -27,7 +27,7 @@ module "log_export" { module "destination" { source = "terraform-google-modules/log-export/google//modules/storage" - version = "~> 10.0" + version = "~> 11.0" project_id = var.project_id storage_bucket_name = "storage_example_bucket" diff --git a/examples/storage/folder/main.tf b/examples/storage/folder/main.tf index 1d153eb5..fb5d9994 100644 --- a/examples/storage/folder/main.tf +++ b/examples/storage/folder/main.tf @@ -23,7 +23,7 @@ resource "random_string" "suffix" { module "log_export" { source = "terraform-google-modules/log-export/google" - version = "~> 10.0" + version = "~> 11.0" destination_uri = module.destination.destination_uri filter = "resource.type = gce_instance" @@ -35,7 +35,7 @@ module "log_export" { module "destination" { source = "terraform-google-modules/log-export/google//modules/storage" - version = "~> 10.0" + version = "~> 11.0" project_id = var.project_id storage_bucket_name = "storage_folder_${random_string.suffix.result}" diff --git a/examples/storage/organization/main.tf b/examples/storage/organization/main.tf index e32cfb01..53524be1 100644 --- a/examples/storage/organization/main.tf +++ b/examples/storage/organization/main.tf @@ -23,7 +23,7 @@ resource "random_string" "suffix" { module "log_export" { source = "terraform-google-modules/log-export/google" - version = "~> 10.0" + version = "~> 11.0" destination_uri = module.destination.destination_uri filter = "resource.type = gce_instance" @@ -35,7 +35,7 @@ module "log_export" { module "destination" { source = "terraform-google-modules/log-export/google//modules/storage" - version = "~> 10.0" + version = "~> 11.0" project_id = var.project_id storage_bucket_name = "storage_org_${random_string.suffix.result}" diff --git a/examples/storage/project/main.tf b/examples/storage/project/main.tf index f30c8cb6..84724fc6 100644 --- a/examples/storage/project/main.tf +++ b/examples/storage/project/main.tf @@ -22,7 +22,7 @@ resource "random_string" "suffix" { module "log_export" { source = "terraform-google-modules/log-export/google" - version = "~> 10.0" + version = "~> 11.0" destination_uri = module.destination.destination_uri filter = "resource.type = gce_instance" @@ -34,7 +34,7 @@ module "log_export" { module "destination" { source = "terraform-google-modules/log-export/google//modules/storage" - version = "~> 10.0" + version = "~> 11.0" project_id = var.project_id storage_bucket_name = "storage_project_${random_string.suffix.result}"