From 92c8eefb72c98b083f9e28d5150ad1b2f5266f94 Mon Sep 17 00:00:00 2001 From: Keir Badger Date: Thu, 4 Apr 2024 10:25:30 +0000 Subject: [PATCH] add in missing var image_build_details --- variables.tf | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/variables.tf b/variables.tf index cf1a764..9521fe9 100644 --- a/variables.tf +++ b/variables.tf @@ -260,4 +260,13 @@ variable "extra_hosts" { ipAddress = string })) default = [] +} + +variable "image_build_details" { + description = "Details of the image build" + type = map(string) + default = { + "buildx" = "false", + "platform" = "" + } } \ No newline at end of file