* The `-module-depth` flag available on `plan`, `apply`, `show`, and `graph` now defaults to `-1`, causing
resources within modules to be expanded in command output. This is only a cosmetic change; it does not affect
any behavior.
* This release includes a bugfix for `$${}` interpolation escaping. These strings are now properly converted to `${}`
during interpolation. This may cause diffs on existing configurations in certain cases.
* Users of `consul_keys` should note that the `value` sub-attribute of `key` will no longer be updated with the remote value of the key. It should be only used to _set_ a key in Consul K/V. To reference key values, use the `var` attribute.
* The 0.6.9 release contained a regression in `aws_autoscaling_group` capacity waiting behavior for configs where `min_elb_capacity != desired_capacity` or `min_size != desired_capacity`. This release remedies that regression by un-deprecating `min_elb_capacity` and restoring the prior behavior.
FEATURES:
@ -70,6 +72,7 @@ BUG FIXES:
* core: Write planfile even on empty plans [GH-4766]
* core: Add validation error when output is missing value field [GH-4762]
* core: Fix improper handling of orphan resources when targeting [GH-4574]
* core: Properly handle references to computed set attributes [GH-4840]
* config: Detect a specific JSON edge case and show a helpful workaround [GH-4746]
* provider/openstack: Ensure valid Security Group Rule attribute combination [GH-4466]
* provider/openstack: Don't put fixed_ip in port creation request if not defined [GH-4617]
@ -81,6 +84,8 @@ BUG FIXES:
* provider/aws: EBS optimised to force new resource in AWS Instance [GH-4627]
* provider/aws: Wait for NACL rule to be visible [GH-4734]
* provider/aws: `default_result` on `aws_autoscaling_lifecycle_hook` resources is now computed [GH-4695]