Skip to content

Commit c7e0204

Browse files
committed
Enable optionally changing EC2 Instance Types
Not all EC2 Instance Types are available in each AWS Region
1 parent 1d76f99 commit c7e0204

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ PACKER_WINDOWS_FILES = $(exec find packer/windows)
99

1010
AWS_REGION ?= us-east-1
1111

12-
ARM64_INSTANCE_TYPE = m7g.xlarge
13-
AMD64_INSTANCE_TYPE = m7a.xlarge
14-
WIN64_INSTANCE_TYPE = m7i.xlarge
12+
ARM64_INSTANCE_TYPE ?= m7g.xlarge
13+
AMD64_INSTANCE_TYPE ?= m7a.xlarge
14+
WIN64_INSTANCE_TYPE ?= m7i.xlarge
1515

1616
BUILDKITE_BUILD_NUMBER ?= none
1717
BUILDKITE_PIPELINE_DEFAULT_BRANCH ?= main

0 commit comments

Comments
 (0)