Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

1,487,334

Downloads of v 0.5.3:

620

Last Update:

03 Jun 2015

Package Maintainer(s):

Software Author(s):

  • Mitchell Hashimoto
  • HashiCorp

Tags:

terraform

Terraform

This is not the latest version of Terraform available.

  • 1
  • 2
  • 3

0.5.3 | Updated: 03 Jun 2015

Downloads:

1,487,334

Downloads of v 0.5.3:

620

Maintainer(s):

Software Author(s):

  • Mitchell Hashimoto
  • HashiCorp

Tags:

terraform

Terraform 0.5.3

This is not the latest version of Terraform available.

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Unknown


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Terraform, run the following command from the command line or from PowerShell:

>

To upgrade Terraform, run the following command from the command line or from PowerShell:

>

To uninstall Terraform, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade terraform -y --source="'INTERNAL REPO URL'" --version="'0.5.3'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade terraform -y --source="'INTERNAL REPO URL'" --version="'0.5.3'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install terraform
  win_chocolatey:
    name: terraform
    version: '0.5.3'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'terraform' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '0.5.3'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller terraform
{
    Name     = "terraform"
    Version  = "0.5.3"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'terraform':
  ensure   => '0.5.3',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved by moderator alexinslc on 04 Jun 2015.

Description

Terraform is a tool for building, changing, and versioning infrastructure safely and efficiently. Terraform can manage existing and popular service providers as well as custom in-house solutions.

The key features of Terraform are:

  • Infrastructure as Code: Infrastructure is described using a high-level configuration syntax. This allows a blueprint of your datacenter to be versioned and treated as you would any other code. Additionally, infrastructure can be shared and re-used.
  • Execution Plans: Terraform has a "planning" step where it generates an execution plan. The execution plan shows what Terraform will do when you call apply. This lets you avoid any surprises when Terraform manipulates infrastructure.
  • Resource Graph: Terraform builds a graph of all your resources, and parallelizes the creation and modification of any non-dependent resources. Because of this, Terraform builds infrastructure as efficiently as possible, and operators get insight into dependencies in their infrastructure.
  • Change Automation: Complex changesets can be applied to your infrastructure with minimal human interaction. With the previously mentioned execution plan and resource graph, you know exactly what Terraform will change and in what order, avoiding many possible human errors.

For more information, see the introduction section of the Terraform website.


tools\chocolateyInstall.ps1
$url = 'https://dl.bintray.com/mitchellh/terraform/terraform_0.5.3_windows_386.zip'
$url64bit = 'https://dl.bintray.com/mitchellh/terraform/terraform_0.5.3_windows_amd64.zip'
$unzipLocation = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"

Install-ChocolateyZipPackage "terraform" "$url" "$unzipLocation" "$url64bit"
tools\chocolateyUninstall.ps1
UnInstall-ChocolateyZipPackage "terraform" "terraformInstall.zip"

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
Terraform 1.7.4 10479 Friday, March 8, 2024 Approved
Terraform 1.7.3 21343 Friday, February 9, 2024 Approved
Terraform 1.7.2 7034 Thursday, February 1, 2024 Approved
Terraform 1.7.1 6798 Thursday, January 25, 2024 Approved
Terraform 1.7.0 4304 Monday, January 22, 2024 Approved
Terraform 1.6.6 26401 Friday, December 15, 2023 Approved
Terraform 1.6.5 11222 Sunday, December 3, 2023 Approved
Terraform 1.6.4 12214 Thursday, November 16, 2023 Approved
Terraform 1.6.3 12665 Thursday, November 2, 2023 Approved
Terraform 1.6.2 10896 Thursday, October 19, 2023 Approved
Terraform 1.6.1 7754 Wednesday, October 11, 2023 Approved
Terraform 1.6.0 5827 Thursday, October 5, 2023 Approved
Terraform 1.5.7 17754 Wednesday, September 13, 2023 Approved
Terraform 1.5.6 16272 Wednesday, August 23, 2023 Approved
Terraform 1.5.5 9157 Friday, August 11, 2023 Approved
Terraform 1.5.4 11521 Thursday, July 27, 2023 Approved
Terraform 1.5.3 10720 Thursday, July 13, 2023 Approved
Terraform 1.5.2 6469 Thursday, July 6, 2023 Approved
Terraform 1.5.1 10011 Thursday, June 22, 2023 Approved
Terraform 1.5.0 9958 Tuesday, June 13, 2023 Approved
Terraform 1.4.6 29536 Thursday, April 27, 2023 Approved
Terraform 1.4.5 10714 Thursday, April 13, 2023 Approved
Terraform 1.4.4 9464 Monday, April 3, 2023 Approved
Terraform 1.4.3 44 Monday, April 3, 2023 Approved
Terraform 1.4.2 15476 Sunday, March 19, 2023 Approved
Terraform 1.4.1 173 Sunday, March 19, 2023 Approved
Terraform 1.4.0 308 Sunday, March 19, 2023 Approved
Terraform 1.3.9 28381 Friday, February 17, 2023 Approved
Terraform 1.3.8 172 Friday, February 17, 2023 Approved
Terraform 1.3.7 32668 Monday, January 16, 2023 Approved
Terraform 1.3.6 18945 Wednesday, December 14, 2022 Approved
Terraform 1.3.5 24281 Friday, November 18, 2022 Approved
Terraform 1.3.4 10395 Monday, November 7, 2022 Approved
Terraform 1.3.3 9200 Friday, October 28, 2022 Approved
Terraform 1.3.2 28090 Monday, October 10, 2022 Approved
Terraform 1.3.1 10079 Thursday, September 29, 2022 Approved
Terraform 1.3.0 12487 Thursday, September 22, 2022 Approved
Terraform 1.2.9 3027 Wednesday, September 21, 2022 Approved
Terraform 1.2.8 35960 Friday, August 26, 2022 Approved
Terraform 1.2.7 1643 Thursday, August 11, 2022 Approved
Terraform 1.2.6 16699 Monday, August 1, 2022 Approved
Terraform 1.2.5 6332 Friday, July 22, 2022 Approved
Terraform 1.2.4 10423 Tuesday, July 5, 2022 Approved
Terraform 1.2.3 14124 Wednesday, June 15, 2022 Approved
Terraform 1.2.2 15983 Wednesday, June 1, 2022 Approved
Terraform 1.2.1 7352 Tuesday, May 24, 2022 Approved
Terraform 1.2.0 4221 Thursday, May 19, 2022 Approved
Terraform 1.1.9 17078 Wednesday, April 20, 2022 Approved
Terraform 1.1.8 7870 Thursday, April 7, 2022 Approved
Terraform 1.1.7 19604 Sunday, March 6, 2022 Approved
Terraform 1.1.6 11681 Saturday, February 19, 2022 Approved
Terraform 1.1.5 11171 Friday, February 4, 2022 Approved
Terraform 1.1.4 14232 Saturday, January 22, 2022 Approved
Terraform 1.1.3 9306 Monday, January 10, 2022 Approved
Terraform 1.1.2 9288 Saturday, December 18, 2021 Approved
Terraform 1.1.1 167 Saturday, December 18, 2021 Approved
Terraform 1.1.0 7866 Wednesday, December 8, 2021 Approved
Terraform 1.0.11 21401 Saturday, November 13, 2021 Approved
Terraform 1.0.10 3780 Tuesday, November 9, 2021 Approved
Terraform 1.0.9 13482 Tuesday, October 19, 2021 Approved
Terraform 1.0.8 11837 Wednesday, September 29, 2021 Approved
Terraform 1.0.7 8684 Thursday, September 16, 2021 Approved
Terraform 1.0.6 5536 Wednesday, September 8, 2021 Approved
Terraform 1.0.5 732 Monday, August 23, 2021 Approved
Terraform 1.0.4 17978 Sunday, August 8, 2021 Approved
Terraform 1.0.3 6307 Thursday, July 29, 2021 Approved
Terraform 1.0.2 16189 Saturday, July 10, 2021 Approved
Terraform 1.0.1 12313 Monday, June 28, 2021 Approved
Terraform 1.0.0 11744 Tuesday, June 8, 2021 Approved
Terraform 0.15.5 1561 Tuesday, June 8, 2021 Approved
Terraform 0.15.4 3447 Monday, May 31, 2021 Approved
Terraform 0.15.3 13475 Friday, May 7, 2021 Approved
Terraform 0.15.2 18848 Friday, May 7, 2021 Approved
Terraform 0.15.1 4633 Tuesday, April 27, 2021 Approved
Terraform 0.15.0 5783 Wednesday, April 14, 2021 Approved
Terraform 0.14.11 8241 Tuesday, April 27, 2021 Approved
Terraform 0.14.10 11199 Wednesday, April 14, 2021 Approved
Terraform 0.14.9 5602 Tuesday, March 30, 2021 Approved
Terraform 0.14.8 10861 Monday, March 15, 2021 Approved
Terraform 0.14.7 11093 Thursday, February 18, 2021 Approved
Terraform 0.14.6 4751 Wednesday, February 10, 2021 Approved
Terraform 0.14.5 6119 Wednesday, January 27, 2021 Approved
Terraform 0.14.4 16504 Sunday, January 10, 2021 Approved
Terraform 0.14.3 5361 Sunday, December 20, 2020 Approved
Terraform 0.14.2 5563 Wednesday, December 9, 2020 Approved
Terraform 0.14.1 205 Wednesday, December 9, 2020 Approved
Terraform 0.14.0 2936 Tuesday, December 8, 2020 Approved
Terraform 0.13.7 13437 Tuesday, April 27, 2021 Approved
Terraform 0.13.6 1928 Sunday, January 10, 2021 Approved
Terraform 0.13.5 87727 Thursday, November 5, 2020 Approved
Terraform 0.13.4 10985 Wednesday, October 7, 2020 Approved
Terraform 0.13.3 9459 Friday, September 18, 2020 Approved
Terraform 0.13.2 15268 Wednesday, September 2, 2020 Approved
Terraform 0.13.1 514 Wednesday, September 2, 2020 Approved
Terraform 0.13.0 9255 Tuesday, August 11, 2020 Approved
Terraform 0.13.0-rc1 153 Monday, August 10, 2020 Approved
Terraform 0.13.0-beta3 427 Monday, July 13, 2020 Approved
Terraform 0.13.0-beta2 266 Thursday, June 25, 2020 Exempted
Terraform 0.13.0-beta1 326 Saturday, June 6, 2020 Exempted
Terraform 0.12.31 14460 Tuesday, April 27, 2021 Approved
Terraform 0.12.30 772 Sunday, January 10, 2021 Approved
Terraform 0.12.29 25356 Monday, August 10, 2020 Approved
Terraform 0.12.28 17575 Friday, June 26, 2020 Approved
Terraform 0.12.27 920 Thursday, June 25, 2020 Approved
Terraform 0.12.26 11159 Monday, June 1, 2020 Approved
Terraform 0.12.25 5931 Saturday, May 23, 2020 Approved
Terraform 0.12.24 22989 Tuesday, March 24, 2020 Approved
Terraform 0.12.23 2017 Wednesday, March 18, 2020 Approved
Terraform 0.12.21 11700 Friday, February 21, 2020 Approved
Terraform 0.12.20 11480 Friday, January 24, 2020 Approved
Terraform 0.12.19 6463 Friday, January 10, 2020 Approved
Terraform 0.12.18 11611 Friday, December 13, 2019 Approved
Terraform 0.12.17 4952 Tuesday, December 3, 2019 Approved
Terraform 0.12.16 3740 Tuesday, November 26, 2019 Approved
Terraform 0.12.15 253 Tuesday, November 26, 2019 Approved
Terraform 0.12.14 642 Tuesday, November 26, 2019 Approved
Terraform 0.12.13 9143 Monday, November 4, 2019 Approved
Terraform 0.12.12 6948 Monday, October 21, 2019 Approved
Terraform 0.12.11 246 Monday, October 21, 2019 Approved
Terraform 0.12.10 2986 Thursday, October 10, 2019 Approved
Terraform 0.12.9 9168 Wednesday, September 18, 2019 Approved
Terraform 0.12.8 3740 Friday, September 6, 2019 Approved
Terraform 0.12.7 4772 Friday, August 23, 2019 Approved
Terraform 0.12.6 4966 Friday, August 2, 2019 Approved
Terraform 0.12.5 3458 Friday, July 19, 2019 Approved
Terraform 0.12.4 1245 Monday, July 15, 2019 Approved
Terraform 0.12.3 3923 Tuesday, June 25, 2019 Approved
Terraform 0.12.2 2469 Thursday, June 13, 2019 Approved
Terraform 0.12.1 2009 Wednesday, June 5, 2019 Approved
Terraform 0.12.0 3479 Wednesday, May 22, 2019 Approved
Terraform 0.12.0-beta1 347 Tuesday, April 2, 2019 Approved
Terraform 0.12.0-alpha4 487 Friday, December 28, 2018 Approved
Terraform 0.12.0-alpha3 245 Friday, December 28, 2018 Approved
Terraform 0.12.0-alpha2 262 Friday, December 28, 2018 Approved
Terraform 0.12.0-alpha1 444 Tuesday, October 23, 2018 Approved
Terraform 0.11.15 4902 Tuesday, April 27, 2021 Approved
Terraform 0.11.14 27767 Wednesday, May 22, 2019 Approved
Terraform 0.11.13 15669 Tuesday, April 2, 2019 Approved
Terraform 0.11.12 256 Tuesday, April 2, 2019 Approved
Terraform 0.11.11 16110 Friday, December 28, 2018 Approved
Terraform 0.11.10 529 Friday, December 28, 2018 Approved
Terraform 0.11.9 7163 Tuesday, October 23, 2018 Approved
Terraform 0.11.8 24197 Thursday, August 30, 2018 Approved
Terraform 0.11.7 9081 Monday, April 16, 2018 Approved
Terraform 0.11.6 1010 Saturday, April 7, 2018 Approved
Terraform 0.11.5 1036 Wednesday, March 28, 2018 Approved
Terraform 0.11.4 756 Monday, April 16, 2018 Approved
Terraform 0.11.3 2860 Friday, February 16, 2018 Approved
Terraform 0.11.2 2017 Saturday, January 13, 2018 Approved
Terraform 0.11.1 1920 Thursday, December 7, 2017 Approved
Terraform 0.11.0 1458 Wednesday, November 22, 2017 Approved
Terraform 0.10.8 1916 Tuesday, October 31, 2017 Approved
Terraform 0.10.7 1384 Tuesday, October 3, 2017 Approved
Terraform 0.10.6 1548 Wednesday, September 20, 2017 Approved
Terraform 0.10.5 392 Wednesday, September 20, 2017 Approved
Terraform 0.10.4 396 Wednesday, September 20, 2017 Approved
Terraform 0.10.3 1166 Friday, September 1, 2017 Approved
Terraform 0.10.2 696 Thursday, August 24, 2017 Approved
Terraform 0.10.1 395 Thursday, August 24, 2017 Approved
Terraform 0.10.0 1062 Thursday, August 3, 2017 Approved
Terraform 0.10.0-rc1 459 Wednesday, August 2, 2017 Approved
Terraform 0.10.0-beta2 411 Wednesday, August 2, 2017 Approved
Terraform 0.10.0-beta1 435 Wednesday, July 5, 2017 Approved
Terraform 0.9.11 1762 Wednesday, July 5, 2017 Approved
Terraform 0.9.10 403 Wednesday, July 5, 2017 Approved
Terraform 0.9.9 391 Wednesday, July 5, 2017 Approved
Terraform 0.9.8 1294 Thursday, June 8, 2017 Approved
Terraform 0.9.7 415 Thursday, June 8, 2017 Approved
Terraform 0.9.6 737 Wednesday, May 31, 2017 Approved
Terraform 0.9.5 970 Friday, May 12, 2017 Approved
Terraform 0.9.4 738 Tuesday, May 2, 2017 Approved
Terraform 0.9.3 862 Thursday, April 13, 2017 Approved
Terraform 0.9.2 785 Monday, April 3, 2017 Approved
Terraform 0.9.1 948 Tuesday, March 21, 2017 Approved
Terraform 0.9.0 572 Thursday, March 16, 2017 Approved
Terraform 0.8.8 745 Monday, March 6, 2017 Approved
Terraform 0.8.7 818 Wednesday, February 22, 2017 Approved
Terraform 0.8.6 689 Wednesday, February 8, 2017 Approved
Terraform 0.8.5 617 Saturday, January 28, 2017 Approved
Terraform 0.8.4 615 Monday, January 16, 2017 Approved
Terraform 0.8.2 596 Thursday, December 22, 2016 Approved
Terraform 0.8.1 426 Friday, December 16, 2016 Approved
Terraform 0.8.0 455 Wednesday, December 14, 2016 Approved
Terraform 0.7.13 576 Wednesday, November 30, 2016 Approved
Terraform 0.7.12 402 Wednesday, November 30, 2016 Approved
Terraform 0.7.11 490 Tuesday, November 22, 2016 Approved
Terraform 0.7.10 351 Tuesday, November 22, 2016 Approved
Terraform 0.7.9 389 Tuesday, November 22, 2016 Approved
Terraform 0.7.8 555 Friday, November 4, 2016 Approved
Terraform 0.7.7 500 Sunday, October 23, 2016 Approved
Terraform 0.7.6 503 Sunday, October 16, 2016 Approved
Terraform 0.7.5 433 Sunday, October 16, 2016 Approved
Terraform 0.7.4 686 Thursday, September 22, 2016 Approved
Terraform 0.7.3 460 Thursday, September 22, 2016 Approved
Terraform 0.7.2 610 Tuesday, August 30, 2016 Approved
Terraform 0.7.1 447 Thursday, August 25, 2016 Approved
Terraform 0.7.0 558 Tuesday, August 2, 2016 Approved
Terraform 0.6.16 435 Tuesday, May 17, 2016 Approved
Terraform 0.6.15 441 Wednesday, April 27, 2016 Approved
Terraform 0.6.14 507 Tuesday, March 22, 2016 Approved
Terraform 0.6.13 386 Tuesday, March 22, 2016 Approved
Terraform 0.6.12 502 Monday, February 29, 2016 Approved
Terraform 0.6.11 430 Tuesday, February 2, 2016 Approved
Terraform 0.6.10 395 Tuesday, February 2, 2016 Approved
Terraform 0.6.9 447 Sunday, January 10, 2016 Approved
Terraform 0.6.8 437 Tuesday, December 8, 2015 Approved
Terraform 0.6.7 382 Tuesday, December 8, 2015 Approved
Terraform 0.6.6 418 Thursday, October 29, 2015 Approved
Terraform 0.6.5 405 Thursday, October 29, 2015 Approved
Terraform 0.6.4 412 Thursday, October 29, 2015 Approved
Terraform 0.6.3 369 Wednesday, August 12, 2015 Approved
Terraform 0.6.2 424 Wednesday, August 12, 2015 Approved
Terraform 0.6.1 405 Wednesday, August 12, 2015 Approved
Terraform 0.6.0 418 Thursday, July 9, 2015 Approved
Terraform 0.5.3 620 Wednesday, June 3, 2015 Approved
Terraform 0.5.2 406 Wednesday, June 3, 2015 Approved
Terraform 0.5.0 440 Wednesday, June 3, 2015 Approved
Terraform 0.4.0 440 Thursday, April 9, 2015 Approved
Terraform 0.3.6 487 Thursday, April 2, 2015 Approved

0.5.3 (June 1, 2015)

IMPROVEMENTS:

  • New resource: aws_kinesis_stream [GH-2110]
  • New resource: aws_iam_server_certificate [GH-2086]
  • New resource: aws_sqs_queue [GH-1939]
  • New resource: aws_sns_topic [GH-1974]
  • New resource: aws_sns_topic_subscription [GH-1974]
  • New resource: aws_volume_attachment [GH-2050]
  • New resource: google_storage_bucket [GH-2060]
  • provider/aws: support ec2 termination protection [GH-1988]
  • provider/aws: support for RDS Read Replicas [GH-1946]
  • provider/aws: aws_s3_bucket add support for policy [GH-1992]
  • provider/aws: aws_ebs_volume add support for tags [GH-2135]
  • provider/aws: aws_elasticache_cluster Confirm node status before reporting
    available
  • provider/aws: aws_network_acl Add support for ICMP Protocol [GH-2148]
  • provider/aws: New force_destroy parameter for S3 buckets, to destroy
    Buckets that contain objects [GH-2007]
  • provider/aws: switching health_check_type on ASGs no longer requires
    resource refresh [GH-2147]

BUG FIXES:

  • provider/aws: Correctly handle AWS keypairs which no longer exist [GH-2032]
  • provider/aws: Fix issue with restoring an Instance from snapshot ID
    [GH-2120]
  • provider/template: store relative path in the state [GH-2038]
  • provisioner/chef: fix interpolation in the Chef provisioner [GH-2168]
  • provisioner/remote-exec: Don't prepend shebang on scripts that already
    have one [GH-2041]

0.5.2 (May 15, 2015)

FEATURES:

  • Chef provisioning: You can now provision new hosts (both Linux and
    Windows) with Chef using a native provisioner [GH-1868]

IMPROVEMENTS:

  • New config function: formatlist - Format lists in a similar way to format.
    Useful for creating URLs from a list of IPs. [GH-1829]
  • New resource: aws_route53_zone_association
  • provider/aws: aws_autoscaling_group can wait for capacity in ELB
    via min_elb_capacity [GH-1970]
  • provider/aws: aws_db_instances supports license_model [GH-1966]
  • provider/aws: aws_elasticache_cluster add support for Tags [GH-1965]
  • provider/aws: aws_network_acl Network ACLs can be applied to multiple subnets [GH-1931]
  • provider/aws: aws_s3_bucket exports hosted_zone_id and region [GH-1865]
  • provider/aws: aws_s3_bucket add support for website redirect_all_requests_to [GH-1909]
  • provider/aws: aws_route53_record exports fqdn [GH-1847]
  • provider/aws: aws_route53_zone can create private hosted zones [GH-1526]
  • provider/google: google_compute_instance scratch attribute added [GH-1920]

BUG FIXES:

  • core: fix "resource not found" for interpolation issues with modules
  • core: fix unflattenable error for orphans [GH-1922]
  • core: fix deadlock with create-before-destroy + modules [GH-1949]
  • core: fix "no roots found" error with create-before-destroy [GH-1953]
  • core: variables set with environment variables won't validate as
    not set without a default [GH-1930]
  • core: resources with a blank ID in the state are now assumed to not exist [GH-1905]
  • command/push: local vars override remote ones [GH-1881]
  • provider/aws: Mark aws_security_group description as ForceNew [GH-1871]
  • provider/aws: aws_db_instance ARN value is correct [GH-1910]
  • provider/aws: aws_db_instance only submit modify request if there
    is a change. [GH-1906]
  • provider/aws: aws_elasticache_cluster export missing information on cluster nodes [GH-1965]
  • provider/aws: bad AMI on a launch configuration won't block refresh [GH-1901]
  • provider/aws: aws_security_group + aws_subnet - destroy timeout increased
    to prevent DependencyViolation errors. [GH-1886]
  • provider/google: google_compute_instance Local SSDs no-longer cause crash
    [GH-1088]
  • provider/google: google_http_health_check Defaults now driven from Terraform,
    avoids errors on update [GH-1894]
  • provider/google: google_compute_template Update Instance Template network
    definition to match changes to Instance [GH-980]
  • provider/template: Fix infinite diff [GH-1898]

0.5.0 (May 7, 2015)

BACKWARDS INCOMPATIBILITIES:

  • provider/aws: Terraform now remove the default egress rule created by AWS in
    a new security group.

FEATURES:

  • Multi-provider (a.k.a multi-region): Multiple instances of a single
    provider can be configured so resources can apply to different settings.
    As an example, this allows Terraform to manage multiple regions with AWS.
  • Environmental variables to set variables: Environment variables can be
    used to set variables. The environment variables must be in the format
    TF_VAR_name and this will be checked last for a value.
  • New remote state backend: s3: You can now store remote state in
    an S3 bucket. [GH-1723]
  • Automatic AWS retries: This release includes a lot of improvement
    around automatic retries of transient errors in AWS. The number of
    retry attempts is also configurable.
  • Templates: A new template_file resource allows long strings needing
    variable interpolation to be moved into files. [GH-1778]
  • Provision with WinRM: Provisioners can now run remote commands on
    Windows hosts. [GH-1483]

IMPROVEMENTS:

  • New config function: length - Get the length of a string or a list.
    Useful in conjunction with split. [GH-1495]
  • New resource: aws_app_cookie_stickiness_policy
  • New resource: aws_customer_gateway
  • New resource: aws_ebs_volume
  • New resource: aws_elasticache_cluster
  • New resource: aws_elasticache_security_group
  • New resource: aws_elasticache_subnet_group
  • New resource: aws_iam_access_key
  • New resource: aws_iam_group_policy
  • New resource: aws_iam_group
  • New resource: aws_iam_instance_profile
  • New resource: aws_iam_policy
  • New resource: aws_iam_role_policy
  • New resource: aws_iam_role
  • New resource: aws_iam_user_policy
  • New resource: aws_iam_user
  • New resource: aws_lb_cookie_stickiness_policy
  • New resource: aws_proxy_protocol_policy
  • New resource: aws_security_group_rule
  • New resource: aws_vpc_dhcp_options_association
  • New resource: aws_vpc_dhcp_options
  • New resource: aws_vpn_connection_route
  • New resource: google_dns_managed_zone
  • New resource: google_dns_record_set
  • Migrate to upstream AWS SDK: Migrate the AWS provider to
    awslabs/aws-sdk-go,
    the official awslabs library. Previously we had forked the library for
    stability while awslabs refactored. Now that work has completed, and we've
    migrated back to the upstream version.
  • core: Improve error message on diff mismatch [GH-1501]
  • provisioner/file: expand ~ in source path [GH-1569]
  • provider/aws: Better retry logic, now retries up to 11 times by default
    with exponentional backoff. This number is configurable. [GH-1787]
  • provider/aws: Improved credential detection [GH-1470]
  • provider/aws: Can specify a token via the config file [GH-1601]
  • provider/aws: Added new vpc_security_group_ids attribute for AWS
    Instances. If using a VPC, you can now modify the security groups for that
    Instance without destroying it [GH-1539]
  • provider/aws: White or blacklist account IDs that can be used to
    protect against accidents. [GH-1595]
  • provider/aws: Add a subset of IAM resources [GH-939]
  • provider/aws: aws_autoscaling_group retries deletes through "in progress"
    errors [GH-1840]
  • provider/aws: aws_autoscaling_group waits for healthy capacity during
    ASG creation [GH-1839]
  • provider/aws: aws_instance supports placement groups [GH-1358]
  • provider/aws: aws_eip supports network interface attachment [GH-1681]
  • provider/aws: aws_elb supports in-place changing of listeners [GH-1619]
  • provider/aws: aws_elb supports connection draining settings [GH-1502]
  • provider/aws: aws_elb increase default idle timeout to 60s [GH-1646]
  • provider/aws: aws_key_pair name can be omitted and generated [GH-1751]
  • provider/aws: aws_network_acl improved validation for network ACL ports
    and protocols [GH-1798] [GH-1808]
  • provider/aws: aws_route_table can target network interfaces [GH-968]
  • provider/aws: aws_route_table can specify propagating VGWs [GH-1516]
  • provider/aws: aws_route53_record supports weighted sets [GH-1578]
  • provider/aws: aws_route53_zone exports nameservers [GH-1525]
  • provider/aws: aws_s3_bucket website support [GH-1738]
  • provider/aws: aws_security_group name becomes optional and can be
    automatically set to a unique identifier; this helps with
    create_before_destroy scenarios [GH-1632]
  • provider/aws: aws_security_group description becomes optional with a
    static default value [GH-1632]
  • provider/aws: automatically set the private IP as the SSH address
    if not specified and no public IP is available [GH-1623]
  • provider/aws: aws_elb exports source_security_group field [GH-1708]
  • provider/aws: aws_route53_record supports alias targeting [GH-1775]
  • provider/aws: Remove default AWS egress rule for newly created Security Groups [GH-1765]
  • provider/consul: add scheme configuration argument [GH-1838]
  • provider/docker: docker_container can specify links [GH-1564]
  • provider/google: resource_compute_disk supports snapshots [GH-1426]
  • provider/google: resource_compute_instance supports specifying the
    device name [GH-1426]
  • provider/openstack: Floating IP support for LBaaS [GH-1550]
  • provider/openstack: Add AZ to openstack_blockstorage_volume_v1 [GH-1726]

BUG FIXES:

  • core: Fix graph cycle issues surrounding modules [GH-1582] [GH-1637]
  • core: math on arbitrary variables works if first operand isn't a
    numeric primitive. [GH-1381]
  • core: avoid unnecessary cycles by pruning tainted destroys from
    graph if there are no tainted resources [GH-1475]
  • core: fix issue where destroy nodes weren't pruned in specific
    edge cases around matching prefixes, which could cause cycles [GH-1527]
  • core: fix issue causing diff mismatch errors in certain scenarios during
    resource replacement [GH-1515]
  • core: dependencies on resources with a different index work when
    count > 1 [GH-1540]
  • core: don't panic if variable default type is invalid [GH-1344]
  • core: fix perpetual diff issue for computed maps that are empty [GH-1607]
  • core: validation added to check for self variables in modules [GH-1609]
  • core: fix edge case where validation didn't pick up unknown fields
    if the value was computed [GH-1507]
  • core: Fix issue where values in sets on resources couldn't contain
    hyphens. [GH-1641]
  • core: Outputs removed from the config are removed from the state [GH-1714]
  • core: Validate against the worst-case graph during plan phase to catch cycles
    that would previously only show up during apply [GH-1655]
  • core: Referencing invalid module output in module validates [GH-1448]
  • command: remote states with uppercase types work [GH-1356]
  • provider/aws: Support AWS_SECURITY_TOKEN env var again [GH-1785]
  • provider/aws: Don't save "instance" for EIP if association fails [GH-1776]
  • provider/aws: launch configuration ID set after create success [GH-1518]
  • provider/aws: Fixed an issue with creating ELBs without any tags [GH-1580]
  • provider/aws: Fix issue in Security Groups with empty IPRanges [GH-1612]
  • provider/aws: manually deleted S3 buckets are refreshed properly [GH-1574]
  • provider/aws: only check for EIP allocation ID in VPC [GH-1555]
  • provider/aws: raw protocol numbers work in aws_network_acl [GH-1435]
  • provider/aws: Block devices can be encrypted [GH-1718]
  • provider/aws: ASG health check grace period can be updated in-place [GH-1682]
  • provider/aws: ELB security groups can be updated in-place [GH-1662]
  • provider/aws: aws_main_route_table_association can be deleted
    manually [GH-1806]
  • provider/docker: image can reference more complex image addresses,
    such as with private repos with ports [GH-1818]
  • provider/openstack: region config is not required [GH-1441]
  • provider/openstack: enable_dhcp for networking subnet should be bool [GH-1741]
  • provisioner/remote-exec: add random number to uploaded script path so
    that parallel provisions work [GH-1588]
  • provisioner/remote-exec: chmod the script to 0755 properly [GH-1796]

This package has no dependencies.

Discussion for the Terraform Package

Ground Rules:

  • This discussion is only about Terraform and the Terraform package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or Terraform, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus