chore(tofu): run tofu fmt on configuration

This commit is contained in:
Vegard Hagen
2025-04-18 17:28:51 +02:00
parent f47309b3d1
commit 4f694ce8c5
15 changed files with 105 additions and 105 deletions
+4 -4
View File
@@ -1,12 +1,12 @@
locals {
version = var.image.version
schematic = file("${path.root}/${var.image.schematic_path}")
schematic = file("${path.root}/${var.image.schematic_path}")
schematic_id = jsondecode(data.http.schematic_id.response_body)["id"]
update_version = coalesce(var.image.update_version, var.image.version)
update_version = coalesce(var.image.update_version, var.image.version)
update_schematic_path = coalesce(var.image.update_schematic_path, var.image.schematic_path)
update_schematic = file("${path.root}/${local.update_schematic_path}")
update_schematic_id = jsondecode(data.http.updated_schematic_id.response_body)["id"]
update_schematic = file("${path.root}/${local.update_schematic_path}")
update_schematic_id = jsondecode(data.http.updated_schematic_id.response_body)["id"]
image_id = "${local.schematic_id}_${local.version}"
update_image_id = "${local.update_schematic_id}_${local.update_version}"