update CHANGELOG

This commit is contained in:
Mitchell Hashimoto 2015-06-30 08:31:18 -07:00
parent 4f2f9546c3
commit 6209eed10e
1 changed files with 4 additions and 0 deletions

View File

@ -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}")