Skip to content

Releases: gruntwork-io/terratest

v0.2.4

14 Dec 05:15
Compare
Choose a tag to compare

v0.2.3

23 Oct 21:32
Compare
Choose a tag to compare
  • Update GetEcsOptimizedAmazonLinuxAmi to return latest version of the AMIs. The new versions support ECS Task IAM Roles.

v0.2.2

02 Sep 21:02
Compare
Choose a tag to compare
  • Add aws.GetCentos7Ami() function to return a valid CentOS 7 AMI for the given AWS region.

v0.2.1

30 Aug 14:40
Compare
Choose a tag to compare

This version of terratest is backwards incompatible with terratest 0.1.x

  • Add support for passing lists and maps to Terraform from the command line. This is a new feature supported as part of Terraform 0.7.x.
  • The TerratestOptions.Vars variable now has type map[string]interface{} rather than map[string]string. Valid values in the map include string, int, bool, list, and map. Note that list and map should only contain primitives (string, int bool) and NOT nested lists or maps.
  • The FetchAwsAvailabilityZonesAsString method has been removed. This is because a) we should be using the aws_availability_zones data source instead of passing AZs around manually and b) even if we are passing AZs around manually, with Terraform 0.7.x, we should be passing lists and not comma-separated strings.

v0.1.18

13 Aug 18:31
Compare
Choose a tag to compare
  • Fix IDs for Ubuntu 16.04 AMI

v0.1.17

13 Aug 17:03
Compare
Choose a tag to compare
  • Add a GetUbuntu1604Ami helper for writing tests around Ubuntu 16.04

v0.1.16

07 Aug 03:11
Compare
Choose a tag to compare
  • Update the way -var flags are passed so it is compatible with Terraform 0.7

v0.1.15

06 Jul 01:28
Compare
Choose a tag to compare
  • The SSH helpers now use the Go SSH libraries under the hood, instead of shelling out to the ssh command line executable. This also means they no longer have to write Key Pair files to disk or SCP them to remote servers.
  • There are now two new helpers in the retry package: DoWithRetry and DoWithTimeout.

v0.1.14

14 Jun 02:31
Compare
Choose a tag to compare
  • Added an SnsTopicArn to the RandomResourceCollection struct.
  • RandomResourceCollection tests now clean up after themselves by deleting the EC2 Keypair created temporarily as part of the test.

v0.1.13

04 Jun 20:49
Compare
Choose a tag to compare
  • Add a GetEcsOptimizedAmazonLinuxAmi method