From 2cae90b349cbd236df169139b5184a289b754659 Mon Sep 17 00:00:00 2001 From: Gabriel Batista <141974958+gabebatista@users.noreply.github.com> Date: Thu, 10 Oct 2024 12:00:28 -0400 Subject: [PATCH] fix: Adds defaults to `vpc_id` and `subnet_id` variables --- .../packer/build-agents/linux/amazon-linux-2023-arm64.pkr.hcl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/assets/packer/build-agents/linux/amazon-linux-2023-arm64.pkr.hcl b/assets/packer/build-agents/linux/amazon-linux-2023-arm64.pkr.hcl index 578e46de..ba76dcdc 100644 --- a/assets/packer/build-agents/linux/amazon-linux-2023-arm64.pkr.hcl +++ b/assets/packer/build-agents/linux/amazon-linux-2023-arm64.pkr.hcl @@ -14,10 +14,12 @@ variable "region" { variable "vpc_id" { type = string + default = null } variable "subnet_id" { type = string + default = null } variable "associate_public_ip_address" {