mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-28 01:41:48 -06:00
13 lines
406 B
Ruby
13 lines
406 B
Ruby
#-------------------------------------------------------------------------
|
|
# Configure Middleman
|
|
#-------------------------------------------------------------------------
|
|
|
|
set :base_url, "https://www.terraform.io/"
|
|
|
|
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
|