В Terraform есть способ установить атрибут, чтобы он не инициировал обновление ресурса?
Пример:
resource "google_cloudfunctions_function" "sometimes_changes" {
...
# label the function with timestamp - don't let this trigger an update.
labels = {
timestamp = timestamp
}
}