From aa0a208ebfef6d645f0a5315a3c1fda01984fc4c Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 29 Apr 2024 17:16:10 -0700 Subject: [PATCH] chore(deps): Update Terraform terraform-google-modules/log-export/google to v8 (#209) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- 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 cad79c8b..5af1e984 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 = "~> 7.0" + version = "~> 8.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 = "~> 7.0" + version = "~> 8.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 fa08f4ea..96d5437c 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 = "~> 7.0" + version = "~> 8.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 = "~> 7.0" + version = "~> 8.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 18b25597..449a0ddf 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 = "~> 7.0" + version = "~> 8.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 = "~> 7.0" + version = "~> 8.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 ad23512e..af5cc770 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 = "~> 7.0" + version = "~> 8.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 = "~> 7.0" + version = "~> 8.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 753ab31c..fd9f1761 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 = "~> 7.0" + version = "~> 8.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 5deca43e..23c3b325 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 = "~> 7.0" + version = "~> 8.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 = "~> 7.0" + version = "~> 8.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 3ef38401..cd4fa4f7 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 = "~> 7.0" + version = "~> 8.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 = "~> 7.0" + version = "~> 8.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 02851e5e..9ca22de9 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 = "~> 7.0" + version = "~> 8.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 = "~> 7.0" + version = "~> 8.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 14e87466..07df997d 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 = "~> 7.0" + version = "~> 8.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 = "~> 7.0" + version = "~> 8.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 = "~> 7.0" + version = "~> 8.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 = "~> 7.0" + version = "~> 8.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 b86f8159..8fe30124 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 = "~> 7.0" + version = "~> 8.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 = "~> 7.0" + version = "~> 8.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 e6ff1cdc..230f202e 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 = "~> 7.0" + version = "~> 8.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 = "~> 7.0" + version = "~> 8.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 dfdc5189..21f0f3f2 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 = "~> 7.0" + version = "~> 8.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 = "~> 7.0" + version = "~> 8.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 cd8cb539..2ba53f41 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 = "~> 7.0" + version = "~> 8.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 = "~> 7.0" + version = "~> 8.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 cb189155..0ad4de66 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 = "~> 7.0" + version = "~> 8.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 = "~> 7.0" + version = "~> 8.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 9a35635c..b5a19d3a 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 = "~> 7.0" + version = "~> 8.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 = "~> 7.0" + version = "~> 8.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 c2f23c3f..7e235e89 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 = "~> 7.0" + version = "~> 8.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 = "~> 7.0" + version = "~> 8.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 2abf043e..5328021e 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 = "~> 7.0" + version = "~> 8.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 = "~> 7.0" + version = "~> 8.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 c41f158e..9f99909d 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 = "~> 7.0" + version = "~> 8.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 = "~> 7.0" + version = "~> 8.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 83153c9e..f5afcd27 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 = "~> 7.0" + version = "~> 8.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 = "~> 7.0" + version = "~> 8.0" project_id = var.project_id storage_bucket_name = "storage_project_${random_string.suffix.result}"