mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-30 10:47:14 -06:00
11 lines
362 B
Ruby
11 lines
362 B
Ruby
#-------------------------------------------------------------------------
|
|
# Configure Middleman
|
|
#-------------------------------------------------------------------------
|
|
|
|
activate :hashicorp do |h|
|
|
h.version = ENV['TERRAFORM_VERSION']
|
|
h.bintray_repo = 'mitchellh/terraform'
|
|
h.bintray_user = 'mitchellh'
|
|
h.bintray_key = ENV['BINTRAY_API_KEY']
|
|
end
|