github.com/hobbeswalsh/terraform@v0.3.7-0.20150619183303-ad17cf55a0fa/website/source/downloads.html.erb (about) 1 --- 2 layout: "downloads" 3 page_title: "Download Terraform" 4 sidebar_current: "downloads-terraform" 5 description: |- 6 Download Terraform 7 --- 8 9 <h1>Download Terraform</h1> 10 11 <section class="downloads"> 12 <div class="description row"> 13 <div class="col-md-12"> 14 <p> 15 Below are all available downloads for the latest version of Terraform 16 (<%= latest_version %>). Please download the proper package for your 17 operating system and architecture. You can find SHA256 checksums 18 for packages <a href="https://dl.bintray.com/mitchellh/terraform/terraform_<%= latest_version %>_SHA256SUMS?direct">here</a>. 19 </p> 20 21 <p> 22 Each release archive is a <code>zip</code> file containing the Terraform binary 23 executables at the top level. These executables are meant to be extracted 24 to a location where they can be found by your shell. 25 </p> 26 </div> 27 </div> 28 <% product_versions.each do |os, versions| %> 29 <div class="row"> 30 <div class="col-md-12 download"> 31 <div class="icon pull-left"><%= system_icon(os) %> 32 </div> 33 <div class="details"> 34 <h2 class="os-name"><%= os %></h2> 35 <ul> 36 <% versions.each do |url| %> 37 <li><a href="<%= url %>"><%= arch_for_filename(url) %></a></li> 38 <% end %> 39 </ul> 40 <div class="clearfix"> 41 </div> 42 </div> 43 </div> 44 </div> 45 <% end %> 46 47 <div class="row"> 48 <div class="col-md-12 poweredby"> 49 <a href='http://www.bintray.com'> 50 <img src='https://www.bintray.com/docs/images/poweredByBintray_ColorTransparent.png'> 51 </a> 52 </div> 53 </div> 54 </section>