From 6209eed10e1050a2d88f8818519ca372bc3d0668 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Tue, 30 Jun 2015 08:31:18 -0700 Subject: [PATCH] update CHANGELOG --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ea8beb20e..8e5e71612 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ BACKWARDS INCOMPATIBILITIES: * connection/ssh: The `agent` field now defaults to `true` if the `SSH_AGENT_SOCK` environment variable is present. In other words, `ssh-agent` support is now opt-out instead of opt-in functionality. [GH-2408] + * provider/aws: If you were setting access and secret key to blank ("") + to force Terraform to load credentials from another source such as the + EC2 role, this will now error. Remove the blank lines and Terraform + will load from other sources. * `concat()` has been repurposed to combine lists instead of strings (old behavior of joining strings is maintained in this version but is deprecated, strings should be combined using interpolation syntax, like "${var.foo}{var.bar}")