made iso image fetching more resilient to network errors

This commit is contained in:
Marcel Straub
2025-09-03 19:22:29 +02:00
parent 582395275a
commit ecb2349156

View File

@@ -21,6 +21,11 @@ data "http" "schematic_id" {
url = "${var.image.factory_url}/schematics"
method = "POST"
request_body = local.schematic
retry {
attempts = 2
min_delay_ms = 500
max_delay_ms = 5000
}
}
data "http" "updated_schematic_id" {