From 8405527a7bcdf4bd5b46e5f3f531f91e5a9eb247 Mon Sep 17 00:00:00 2001 From: fenyvesi-levi Date: Fri, 25 Jul 2025 18:39:42 +0200 Subject: [PATCH] Added "client_version" and "client" to ignore_changes in cloud-run-v2 module to avoid drifting terraform changes (#3245) Co-authored-by: Ludovico Magnocavallo --- modules/cloud-run-v2/service.tf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/cloud-run-v2/service.tf b/modules/cloud-run-v2/service.tf index d493b927d..b7e89992c 100644 --- a/modules/cloud-run-v2/service.tf +++ b/modules/cloud-run-v2/service.tf @@ -254,6 +254,8 @@ resource "google_cloud_run_v2_service" "service" { lifecycle { ignore_changes = [ + client, + client_version, template[0].annotations["run.googleapis.com/operation-id"], ] }