Merge remote-tracking branch 'origin/master' into fast-dev

This commit is contained in:
Ludovico Magnocavallo
2025-12-23 07:24:17 +00:00

View File

@@ -22,7 +22,7 @@ output "projects" {
resource "google_storage_bucket_object" "version" {
count = fileexists("fast_version.txt") ? 1 : 0
bucket = var.automation.outputs_bucket
name = "versions/2-${var.stage_name}-version.txt"
name = "versions/${var.stage_name}-version.txt"
source = "fast_version.txt"
source_md5hash = filemd5("fast_version.txt")
}