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 Sep 30, 2024
1 parent 0bc707b commit cb7e7f1
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions 1-org/modules/centralized-logging/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ resource "random_string" "suffix" {

module "log_export" {
source = "terraform-google-modules/log-export/google"
version = "~> 8.0"
version = "~> 10.0"

for_each = local.log_exports

Expand All @@ -98,7 +98,7 @@ module "log_export" {

module "log_export_billing" {
source = "terraform-google-modules/log-export/google"
version = "~> 8.0"
version = "~> 10.0"

for_each = var.enable_billing_account_sink ? local.destination_resource_name : {}

Expand All @@ -123,7 +123,7 @@ resource "time_sleep" "wait_sa_iam_membership" {

module "destination_project" {
source = "terraform-google-modules/log-export/google//modules/project"
version = "~> 8.0"
version = "~> 10.0"
count = var.project_options != null ? 1 : 0

project_id = var.logging_destination_project_id
Expand Down Expand Up @@ -151,7 +151,7 @@ resource "google_project_iam_member" "project_sink_member" {
module "internal_project_log_export" {
source = "terraform-google-modules/log-export/google"
version = "~> 8.0"
version = "~> 10.0"
count = var.project_options != null ? 1 : 0

destination_uri = "logging.googleapis.com/projects/${var.logging_destination_project_id}/locations/${var.project_options.location}/buckets/${coalesce(var.project_options.log_bucket_id, "AggregatedLogs")}"
Expand All @@ -164,7 +164,7 @@ module "internal_project_log_export" {

module "destination_aggregated_logs" {
source = "terraform-google-modules/log-export/google//modules/logbucket"
version = "~> 8.0"
version = "~> 10.0"
count = var.project_options != null ? 1 : 0

project_id = var.logging_destination_project_id
Expand Down Expand Up @@ -238,7 +238,7 @@ resource "google_project_iam_member" "project_sink_member_billing" {
#----------------------#
module "destination_storage" {
source = "terraform-google-modules/log-export/google//modules/storage"
version = "~> 8.0"
version = "~> 10.0"

count = var.storage_options != null ? 1 : 0

Expand Down Expand Up @@ -289,7 +289,7 @@ resource "google_storage_bucket_iam_member" "storage_sink_member_billing" {
#----------------------#
module "destination_pubsub" {
source = "terraform-google-modules/log-export/google//modules/pubsub"
version = "~> 8.0"
version = "~> 10.0"

count = var.pubsub_options != null ? 1 : 0

Expand Down

0 comments on commit cb7e7f1

Please sign in to comment.