From 5b1903801d244330512d9870806cb70e5eaf9c47 Mon Sep 17 00:00:00 2001 From: Ashcon Partovi Date: Wed, 13 Nov 2024 15:51:19 -0800 Subject: [PATCH] Changes [build image] --- scripts/machine.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/machine.mjs b/scripts/machine.mjs index 783d629af2928f..061afeab57f199 100755 --- a/scripts/machine.mjs +++ b/scripts/machine.mjs @@ -399,7 +399,7 @@ export const aws = { tagSpecification = ["instance", "volume"].map(resourceType => { return { ResourceType: resourceType, - Tags: Object.entries(metadata).map(([Key, Value]) => ({ Key, Value })), + Tags: Object.entries(metadata).map(([Key, Value]) => ({ Key, Value: String(Value) })), }; }); }