From 9e47e65eb6efae84e9d96d4dcf1d5bac6963731a Mon Sep 17 00:00:00 2001 From: Mend Renovate Date: Mon, 30 Sep 2024 16:58:50 +0000 Subject: [PATCH] fix(deps)!: Update Terraform terraform-google-modules/log-export/google to v10 --- 5-infrastructure/modules/base-env/boa-gke.tf | 2 +- 5-infrastructure/modules/base-env/boa-ops.tf | 4 ++-- 5-infrastructure/modules/base-env/boa-sec.tf | 2 +- 5-infrastructure/modules/base-env/boa-sql.tf | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/5-infrastructure/modules/base-env/boa-gke.tf b/5-infrastructure/modules/base-env/boa-gke.tf index 03a6b4e..21ad1ee 100644 --- a/5-infrastructure/modules/base-env/boa-gke.tf +++ b/5-infrastructure/modules/base-env/boa-gke.tf @@ -72,7 +72,7 @@ locals { module "sink_gke" { source = "terraform-google-modules/log-export/google" - version = "~> 6.0" + version = "~> 10.0" destination_uri = module.log_destination.destination_uri filter = "resource.type:(k8s_cluster OR k8s_container OR gce_target_https_proxy OR gce_url_map OR http_load_balancer OR gce_target_https_proxy OR gce_backend_service OR gce_instance OR gce_forwarding_rule OR gce_health_check OR service_account OR global OR audited_resource OR project)" log_sink_name = "sink-boa-${local.envs[var.env].short}-gke-to-ops" diff --git a/5-infrastructure/modules/base-env/boa-ops.tf b/5-infrastructure/modules/base-env/boa-ops.tf index 79f5164..fc93b3e 100644 --- a/5-infrastructure/modules/base-env/boa-ops.tf +++ b/5-infrastructure/modules/base-env/boa-ops.tf @@ -16,7 +16,7 @@ module "sink_ops" { source = "terraform-google-modules/log-export/google" - version = "~> 6.0" + version = "~> 10.0" destination_uri = module.log_destination.destination_uri filter = "" log_sink_name = "sink-boa-${local.envs[var.env].short}-ops" @@ -35,7 +35,7 @@ resource "random_string" "bucket_name" { module "log_destination" { source = "terraform-google-modules/log-export/google//modules/storage" - version = "~> 6.0" + version = "~> 10.0" project_id = var.boa_ops_project_id storage_bucket_name = "log-ops-${lower(var.location_secondary)}-01-${random_string.bucket_name.result}" location = var.location_secondary diff --git a/5-infrastructure/modules/base-env/boa-sec.tf b/5-infrastructure/modules/base-env/boa-sec.tf index 9c18321..c875dfb 100644 --- a/5-infrastructure/modules/base-env/boa-sec.tf +++ b/5-infrastructure/modules/base-env/boa-sec.tf @@ -25,7 +25,7 @@ locals { module "sink_sec" { source = "terraform-google-modules/log-export/google" - version = "~> 6.0" + version = "~> 10.0" destination_uri = module.log_destination.destination_uri filter = "resource.type:(cloudkms_keyring OR service_account OR global OR audited_resource OR project)" log_sink_name = "sink-boa-${local.envs[var.env].short}-sec-to-ops" diff --git a/5-infrastructure/modules/base-env/boa-sql.tf b/5-infrastructure/modules/base-env/boa-sql.tf index 4364a50..70ba762 100644 --- a/5-infrastructure/modules/base-env/boa-sql.tf +++ b/5-infrastructure/modules/base-env/boa-sql.tf @@ -40,7 +40,7 @@ locals { module "sink_sql" { source = "terraform-google-modules/log-export/google" - version = "~> 6.0" + version = "~> 10.0" destination_uri = module.log_destination.destination_uri filter = "resource.type:(cloudsql_database OR service_account OR global OR audited_resource OR project)" log_sink_name = "sink-boa-${local.envs[var.env].short}-sql-to-ops"