From 5af8dd2ea5b9f665ca3c428debc73d4c8fd805ab Mon Sep 17 00:00:00 2001 From: Daniel Andrade Date: Thu, 22 Aug 2024 16:25:08 -0300 Subject: [PATCH] fix: bump version of terraform provider on cai-monitoring module --- 1-org/modules/cai-monitoring/main.tf | 5 ++--- 1-org/modules/cai-monitoring/versions.tf | 4 ++-- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/1-org/modules/cai-monitoring/main.tf b/1-org/modules/cai-monitoring/main.tf index c1ccc6a8e..22d6425ff 100644 --- a/1-org/modules/cai-monitoring/main.tf +++ b/1-org/modules/cai-monitoring/main.tf @@ -162,9 +162,8 @@ module "cloud_function" { service_config = { service_account_email = google_service_account.cloudfunction.email runtime_env_variables = { - ROLES = join(",", var.roles_to_monitor) - SOURCE_ID = google_scc_source.cai_monitoring.id - LOG_EXECUTION_ID = "true" + ROLES = join(",", var.roles_to_monitor) + SOURCE_ID = google_scc_source.cai_monitoring.id } } diff --git a/1-org/modules/cai-monitoring/versions.tf b/1-org/modules/cai-monitoring/versions.tf index d516241ce..414c1c685 100644 --- a/1-org/modules/cai-monitoring/versions.tf +++ b/1-org/modules/cai-monitoring/versions.tf @@ -19,11 +19,11 @@ terraform { required_providers { google = { source = "hashicorp/google" - version = ">= 3.77, <=5.37" + version = ">= 5.42" } google-beta = { source = "hashicorp/google-beta" - version = ">= 3.77, <=5.37" + version = ">= 5.42" } random = { source = "hashicorp/random"