Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Arm64 #100

Merged
merged 3 commits into from
Sep 1, 2022
Merged

Arm64 #100

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 12.4.0
FEATURE:
- Add support for darwin arm64 providers

# 12.3.0
FEATURE:
- add optional `--json` arg to use `-json` in plan/apply
Expand Down
2 changes: 2 additions & 0 deletions lib/dome/terraform.rb
Original file line number Diff line number Diff line change
Expand Up @@ -376,6 +376,8 @@ def install_provider(provider)

if RUBY_PLATFORM =~ /linux/
arch = 'linux_amd64'
elsif RUBY_PLATFORM =~ /arm64-darwin/
arch = 'darwin_arm64'
elsif RUBY_PLATFORM =~ /darwin/
arch = 'darwin_amd64'
else
Expand Down
2 changes: 1 addition & 1 deletion lib/dome/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Dome
VERSION = '12.3.0'
VERSION = '12.4.0'
end