14 lines
463 B
Ruby
14 lines
463 B
Ruby
#-------------------------------------------------------------------------
|
|
# Configure Middleman
|
|
#-------------------------------------------------------------------------
|
|
|
|
set :base_url, "https://www.terraform.io/"
|
|
|
|
activate :hashicorp do |h|
|
|
h.version = ENV["TERRAFORM_VERSION"]
|
|
h.bintray_enabled = ENV["BINTRAY_ENABLED"]
|
|
h.bintray_repo = "mitchellh/terraform"
|
|
h.bintray_user = "mitchellh"
|
|
h.bintray_key = ENV["BINTRAY_API_KEY"]
|
|
end
|