github.com/pmcatominey/terraform@v0.7.0-rc2.0.20160708105029-1401a52a5cc5/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 the available downloads for the latest version of Terraform
    16          (<%= latest_version %>). Please download the proper package for your
    17          operating system and architecture.
    18        </p>
    19        <p>
    20          You can find the
    21          <a href="https://releases.hashicorp.com/terraform/<%= latest_version %>/terraform_<%= latest_version %>_SHA256SUMS">
    22            SHA256 checksums for Terraform <%= latest_version %>
    23          </a>
    24          online and you can
    25          <a href="https://releases.hashicorp.com/terraform/<%= latest_version %>/terraform_<%= latest_version %>_SHA256SUMS.sig">
    26            verify the checksums signature file
    27          </a>
    28          which has been signed using <a href="https://www.hashicorp.com/security.html" target="_blank" rel="nofollow noopener noreferrer">HashiCorp's GPG key</a>.
    29          You can also <a href="https://releases.hashicorp.com/terraform/" target="_blank" rel="nofollow noopener noreferrer">download older versions of Terraform</a> from the releases service.
    30        </p>
    31        <p>
    32        Checkout the <a href="https://github.com/hashicorp/terraform/blob/v<%= latest_version %>/CHANGELOG.md">v<%= latest_version %> CHANGELOG</a> for information on the latest release.
    33        </p>
    34        <p>
    35          <b>Note:</b> Terraform now ships as a single binary. When upgrading from Terraform &lt; 0.7.0
    36          you will need to remove the old <code>terraform-*</code> plugins from your installation path.
    37        </p>
    38      </div>
    39    </div>
    40  
    41    <% product_versions.each do |os, arches| %>
    42      <div class="row">
    43        <div class="col-md-12 download">
    44          <div class="icon pull-left"><%= system_icon(os) %></div>
    45          <div class="details">
    46            <h2 class="os-name"><%= pretty_os(os) %></h2>
    47            <ul>
    48              <% arches.each do |arch, url| %>
    49                <li><a href="<%= url %>"><%= pretty_arch(arch) %></a></li>
    50              <% end %>
    51            </ul>
    52            <div class="clearfix"></div>
    53          </div>
    54        </div>
    55      </div>
    56    <% end %>
    57  
    58    <div class="row">
    59      <div class="col-md-12 poweredby">
    60        <a href="https://www.fastly.com?utm_source=hashicorp" target="_blank" rel="nofollow noopener noreferrer">
    61          <%= image_tag "fastly_logo.png" %>
    62        </a>
    63      </div>
    64    </div>
    65  </section>