We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d30f59 commit edabd9bCopy full SHA for edabd9b
1 file changed
acceptance/install_terraform.py
@@ -19,7 +19,10 @@
19
os_name = platform.system().lower()
20
21
arch = platform.machine().lower()
22
-arch = {"x86_64": "amd64"}.get(arch, arch)
+arch = {
23
+ "x86_64": "amd64",
24
+ "aarch64": "arm64",
25
+}.get(arch, arch)
26
if os_name == "windows" and arch not in ("386", "amd64"):
27
# terraform 1.5.5 only has builds for these two.
28
arch = "amd64"
0 commit comments