From 2286fc5f20132aecf2a2a9d5b1bd99a76e0b0b01 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Tue, 24 Feb 2015 17:36:15 -0800 Subject: [PATCH] update CHANGELOG --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 857cd7923f..4e2ed6e9b0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,11 +4,18 @@ FEATURES: * **Self-variables** can be used to reference the current resource's attributes within a provisioner. Ex. `${self.private_ip_address}` [GH-1033] + * **Continous state** saving during `terraform apply`. The state file is + continously updated as apply is running, meaning that the state is + less likely to become corrupt in a catastrophic case: terraform panic + or system killing Terraform. IMPROVEMENTS: * **New config function: `split`** - Split a value based on a delimiter. This is useful for faking lists as parameters to modules. + * core: The serial of the state is only updated if there is an actual + change. This will lower the amount of state changing on things + like refresh. BUG FIXES: