github.com/danrjohnson/terraform@v0.7.0-rc2.0.20160627135212-d0fc1fa086ff/CHANGELOG.md (about)

     1  ## 0.7 (Unreleased)
     2  
     3  BACKWARDS INCOMPATIBILITIES / NOTES:
     4  
     5   * Terraform's built-in plugins are now distributed as part of the main Terraform binary, and use the go-plugin framework. Overrides are still available using separate binaries, but will need recompiling against Terraform 0.7.
     6   * The `terraform plan` command no longer persists state. This makes the command much safer to run, since it is now side-effect free. The `refresh` and `apply` commands still persist state to local and remote storage. Any automation that assumes that `terraform plan` persists state will need to be reworked to explicitly call `terraform refresh` to get the equivalent side-effect. (The `terraform plan` command no longer has the `-state-out` or `-backup` flags due to this change.)
     7   * The `concat()` interpolation function can no longer be used to join strings.
     8   * Quotation marks may no longer be escaped in HIL expressions [GH-7201]
     9   * `openstack_networking_subnet_v2` now defaults to turning DHCP on.
    10   * `aws_elb` now defaults `cross_zone_load_balancing` to `true`
    11   * `resource_aws_instance`: EC2 Classic users may continue to use
    12     `security_groups` to reference Security Groups by their `name`. Users who are
    13     managing Instances inside VPCs will need to use `vpc_security_group_ids` instead, 
    14     and reference the security groups by their `id`. 
    15     Ref https://github.com/hashicorp/terraform/issues/6416#issuecomment-219145065
    16   * Lists materialized using splat syntax, for example `aws_instance.foo.*.id` are now ordered by the count index rather than lexographically sorted. If this produces a large number of undesirable differences, you can use the new `sort()` interpolation function to produce the previous behaviour.
    17   * `aws_route53_record`: `latency_routing_policy`, `geolocation_routing_policy`, and `failover_routing_policy` block options have been added. With these additions we’ve renamed the `weight` attribute to `weighted_routing_policy`, and it has changed from a string to a block to match the others. Please see the updated documentation on using `weighted_routing_policy`:  https://www.terraform.io/docs/providers/aws/r/route53_record.html . [GH-6954]
    18   * You now access the values of maps using the syntax `var.map["key"]` or the `lookup` function instead of `var.map.key`.
    19   * Outputs on `terraform_remote_state` resources are now top level attributes rather than inside the `output` map. In order to access outputs, use the syntax: `terraform_remote_state.name.outputname`. Currently outputs cannot be named `config` or `backend`.
    20   * `azurerm_dns_cname_record` now accepts a single record rather than a list of records
    21   * `aws_db_instance` now defaults `publicly_accessible` to false
    22   * `openstack_fw_policy_v1` now correctly applies rules in the order they are specified. Upon the next apply, current rules might be re-ordered.
    23  
    24  FEATURES:
    25  
    26   * **Data sources** are a new kind of primitive in Terraform. Attributes for data sources are refreshed and available during the planning stage. [GH-6598]
    27   * **Lists and maps** can now be used as first class types for variables and may also be passed between modules. [GH-6322]
    28   * **State management CLI commands** provide a variety of state manipulation functions for advanced use cases. This should be used where possible instead of manually modifying state files. [GH-5811]
    29   * **State Import** allows a way to import existing resources into Terraform state for many types of resource. Initial coverage of AWS is quite high, and it is straightforward to add support for new resources.
    30   
    31   * **New Command:** `terraform state` to provide access to a variety of state manipulation functions [GH-5811]
    32   * **New Data Source:** `aws_ami` [GH-6911]
    33   * **New Data Source:** `aws_availability_zones` [GH-6805]
    34   * **New Data Source:** `aws_iam_policy_document` [GH-6881]
    35   * **New Data Source:** `aws_s3_bucket_object` [GH-6946]
    36   * **New Interpolation Function:** `sort` [GH-7128]
    37   * **New Interpolation Function:** `distinct` [GH-7174]
    38   * **New Provider:** `grafana` [GH-6206]
    39   * **New Provider:** `random` - allows generation of random values without constantly generating diffs [GH-6672]
    40   * **New Remote State Provider:** - `gcs` - Google Cloud Storage [GH-6814]
    41   * **New Remote State Provider:** - `azure` - Microsoft Azure Storage [GH-7064]
    42   * **New Resource:** `aws_elb_attachment` [GH-6879]
    43   * **New Resource:** `aws_elastictranscoder_preset` [GH-6965]
    44   * **New Resource:** `aws_elastictranscoder_pipeline` [GH-6965]
    45   * **New Resource:** `aws_iam_group_policy_attachment` [GH-6858]
    46   * **New Resource:** `aws_iam_role_policy_attachment` [GH-6858]
    47   * **New Resource:** `aws_iam_user_policy_attachment` [GH-6858]
    48   * **New Resource:** `aws_rds_cluster_parameter_group` [GH-5269]
    49   * **New Resource:** `aws_spot_fleet_request` [GH-7243]
    50   * **New Resource:** `aws_ses_active_receipt_rule_set` [GH-5387]
    51   * **New Resource:** `aws_ses_receipt_filter` [GH-5387]
    52   * **New Resource:** `aws_ses_receipt_rule` [GH-5387]
    53   * **New Resource:** `aws_ses_receipt_rule_set` [GH-5387]
    54   * **New Resource:** `openstack_blockstorage_volume_v2` [GH-6693]
    55   * **New Resource:** `openstack_lb_loadbalancer_v2` [GH-7012]
    56   * **New Resource:** `openstack_lb_listener_v2` [GH-7012]
    57   * **New Resource:** `openstack_lb_pool_v2` [GH-7012]
    58   * **New Resource:** `openstack_lb_member_v2` [GH-7012]
    59   * **New Resource:** `openstack_lb_monitor_v2` [GH-7012]
    60   * **New Resource:** `vsphere_virtual_disk` [GH-6273]
    61   * **New Resource:** `github_repository_collaborator` [GH-6861]
    62   * **New Resource:** `azurerm_virtual_machine_scale_set` [GH-6711]
    63   * **New Resource:** `datadog_timeboard` [GH-6900]
    64   * core: Tainted resources now show up in the plan and respect dependency ordering [GH-6600]
    65   * core: The `lookup` interpolation function can now have a default fall-back value specified [GH-6884]
    66   * core: The `terraform plan` command no longer persists state. [GH-6811]
    67  
    68  IMPROVEMENTS:
    69  
    70   * core: The `jsonencode` interpolation function now supports encoding lists and maps [GH-6749]
    71   * core: Add the ability for resource definitions to mark attributes as "sensitive" which will omit them from UI output. [GH-6923]
    72   * provider/aws: Add `option_settings` to `aws_db_option_group` [GH-6560]
    73   * provider/aws: Add more explicit support for Skipping Final Snapshot in RDS Cluster [GH-6795]
    74   * provider/aws: Add support for S3 Bucket Acceleration [GH-6628]
    75   * provider/aws: Add support for `kms_key_id` to `aws_db_instance` [GH-6651]
    76   * provider/aws: Add support to `aws_redshift_cluster` for `iam_roles` [GH-6647]
    77   * provider/aws: SQS use raw policy string if compact fails [GH-6724]
    78   * provider/aws: Set default description to "Managed by Terraform" [GH-6104]
    79   * provider/aws: Support for Redshift Cluster encryption using a KMS key [GH-6712]
    80   * provider/aws: Support tags for AWS redshift cluster [GH-5356]
    81   * provider/aws: Add `iam_arn` to aws_cloudfront_origin_access_identity [GH-6955]
    82   * provider/aws: Add `cross_zone_load_balancing` on `aws_elb` default to true [GH-6897]
    83   * provider/aws: Add support for `character_set_name` to `aws_db_instance` [GH-4861]
    84   * provider/aws: Add support for DB parameter group with RDS Cluster Instances (Aurora) [GH-6865]
    85   * provider/aws: Add `name_prefix` to `aws_iam_instance_profile` and `aws_iam_role` [GH-6939]
    86   * provider/aws: Allow authentication & credentials validation for federated IAM Roles and EC2 instance profiles [GH-6536]
    87   * provider/aws: Rename parameter_group_name to db_cluster_parameter_group_name [GH-7083]
    88   * provider/aws: Retry RouteTable Route/Assocation creation [GH-7156]
    89   * provider/aws: `delegation_set_id` conflicts w/ `vpc_id` in `aws_route53_zone` as delegation sets can only be used for public zones [GH-7213]
    90   * provider/azurerm: Add support for EnableIPForwarding to `azurerm_network_interface` [GH-6807]
    91   * provider/azurerm: Add support for exporting the `azurerm_storage_account` access keys [GH-6742]
    92   * provider/azurerm: The Azure SDK now exposes better error messages [GH-6976]
    93   * provider/clc: Add support for hyperscale and bareMetal server types and package installation
    94   * provider/clc: Fix optional server password [GH-6414]
    95   * provider/cloudstack: Add support for affinity groups to `cloudstack_instance` [GH-6898]
    96   * provider/cloudstack: Enable swapping of ACLs without having to rebuild the network tier [GH-6741]
    97   * provider/cloudstack: Improve ACL swapping [GH-7315]
    98   * provider/datadog: Add support for 'require full window' and 'locked' [GH-6738]
    99   * provider/fastly: Add support for Cache Settings [GH-6781]
   100   * provider/fastly: Add support for Service Request Settings on `fastly_service_v1` resources [GH-6622]
   101   * provider/fastly: Add support for custom VCL configuration [GH-6662]
   102   * provider/google: Support optional uuid naming for Instance Template [GH-6604]
   103   * provider/openstack: Add support for client certificate authentication [GH-6279]
   104   * provider/openstack: Allow Neutron-based Floating IP to target a specific tenant [GH-6454] 
   105   * provider/openstack: Enable DHCP By Default [GH-6838]
   106   * provider/openstack: Implement fixed_ip on Neutron floating ip allocations [GH-6837] 
   107   * provider/openstack: Increase timeouts for image resize, subnets, and routers [GH-6764]
   108   * provider/openstack: Add `lb_provider` argument to `lb_pool_v1` resource [GH-6919]
   109   * provider/openstack: Enforce `ForceNew` on Instance Block Device [GH-6921]
   110   * provider/openstack: Can now stop instances before destroying them [GH-7184]
   111   * provider/openstack: Disassociate LBaaS v1 Monitors from Pool Before Deletion [GH-6997]
   112   * provider/triton: add `triton_machine` `domain names` [GH-7149]
   113   * provider/vsphere: Add support for `controller_type` to `vsphere_virtual_machine` [GH-6785]
   114   * provider/vsphere: Fix bug with `vsphere_virtual_machine` wait for ip [GH-6377]
   115   * provider/vsphere: Virtual machine update disk [GH-6619]
   116   * provider/vsphere: `vsphere_virtual_machine` adding controller creation logic [GH-6853]
   117   * provider/vsphere: `vsphere_virtual_machine` added support for `mac address` on `network_interface` [GH-6966]
   118   * provider/vsphere: Enhanced `vsphere` logging capabilities [GH-6893]
   119   * provider/vsphere: Add DiskEnableUUID option to `vsphere_virtual_machine` [GH-7088]
   120   * provider/vsphere: Virtual Machine and File resources handle Read errors properley [GH-7220]
   121   
   122  BUG FIXES:
   123  
   124   * core: Correct the previous fix for a bug causing "attribute not found" messages during destroy, as it was insufficient [GH-6599]
   125   * core: Fix issue causing syntax errors interpolating count attribute when value passed between modules [GH-6833]
   126   * core: Fix "diffs didn't match during apply" error for computed sets [GH-7205]
   127   * core: Fix issue where `terraform init .` would truncate existing files [GH-7273]
   128   * provider/aws: Changing keys in `aws_dynamodb_table` correctly force new resources [GH-6829]
   129   * provider/aws: Fix a bug where CloudWatch alarms are created repeatedly if the user does not have permission to use the the DescribeAlarms operation [GH-7227]
   130   * provider/aws: Fix crash in `aws_elasticache_parameter_group` occuring following edits in the console [GH-6687]
   131   * provider/aws: Fix issue reattaching a VPN gateway to a VPC [GH-6987]
   132   * provider/aws: Fix issue with Root Block Devices and encrypted flag in Launch Configurations [GH-6512]
   133   * provider/aws: If more ENIs are attached to `aws_instance`, the one w/ DeviceIndex `0` is always used in context of `aws_instance` (previously unpredictable) [GH-6761]
   134   * provider/aws: Make 'stage_name' required in api_gateway_deployment [GH-6797]
   135   * provider/aws: Mark Lambda function as gone when it's gone [GH-6924]
   136   * provider/aws: Trim trailing `.` from `name` in `aws_route53_record` resources to prevent spurious diffs [GH-6592]
   137   * provider/aws: Update Lambda functions on name change [GH-7081]
   138   * provider/aws: Updating state when `aws_sns_topic_subscription` is missing [GH-6629]
   139   * provider/aws: `aws_codedeploy_deployment_group` panic when setting `on_premises_instance_tag_filter` [GH-6617]
   140   * provider/aws: `aws_db_instance` now defaults `publicly_accessible` to false [GH-7117]
   141   * provider/aws: `aws_opsworks_application.app_source` SSH key is write-only [GH-6649]
   142   * provider/aws: fix Elastic Beanstalk `cname_prefix` continual plans [GH-6653]
   143   * provider/aws: Bundle IOPs and Allocated Storage update for DB Instances [GH-7203]
   144   * provider/aws: fix aws_security_group_rule refresh [GH-6730]
   145   * provider/aws: Fix issue with Elastic Beanstalk and invalid settings [GH-7222]
   146   * provider/aws: Fix issue where aws_app_cookie_stickiness_policy fails on destroy if LoadBalancer doesn't exist [GH-7166]
   147   * provider/aws: Stickiness Policy exists, but isn't assigned to the ELB [GH-7188]
   148   * provider/azurerm: Fixes terraform crash when using SSH keys with `azurerm_virtual_machine` [GH-6766]
   149   * provider/azurerm: Fix a bug causing 'diffs do not match' on `azurerm_network_interface` resources [GH-6790]
   150   * provider/azurerm: Normalizes `availability_set_id` casing to avoid spurious diffs in `azurerm_virtual_machine` [GH-6768]
   151   * provider/azurerm: Add support for storage container name validation [GH-6852]
   152   * provider/azurerm: Remove storage containers and blobs when storage accounts are not found [GH-6855]
   153   * provider/azurerm: `azurerm_virtual_machine` fix `additional_unattend_rm` Windows config option [GH-7105]
   154   * provider/azurerm: Fix `azurerm_virtual_machine` windows_config [GH-7123]
   155   * provider/azurerm: `azurerm_dns_cname_record` can create CNAME records again [GH-7113]
   156   * provider/azurerm: `azurerm_network_security_group` now waits for the provisioning state of `ready` before proceeding [GH-7307]
   157   * provider/azurerm: `computer_name` is now required for `azurerm_virtual_machine` resources [GH-7308]
   158   * provider/cloudflare: Fix issue upgrading CloudFlare Records created before v0.6.15 [GH-6969]
   159   * provider/cloudstack: Fix using `cloudstack_network_acl` within a project [GH-6743]
   160   * provider/digitalocean: Stop `digitocean_droplet` forcing new resource on uppercase region [GH-7044]
   161   * provider/google: Fix a bug causing an error attempting to delete an already-deleted `google_compute_disk` [GH-6689]
   162   * provider/mysql: Specifying empty provider credentials no longer causes a panic [GH-7211]
   163   * provider/openstack: Reassociate Floating IP on network changes [GH-6579]
   164   * provider/openstack: Ensure CIDRs Are Lower Case [GH-6864]
   165   * provider/openstack: Rebuild Instances On Network Changes [GH-6844]
   166   * provider/openstack: Firewall rules are applied in the correct order [GH-7194]
   167   * provider/vsphere: `gateway` and `ipv6_gateway` are now read from `vsphere_virtual_machine` resources [GH-6522]
   168   * provider/vsphere: `ipv*_gateway` parameters won't force a new `vsphere_virtual_machine` [GH-6635]
   169   * provider/vsphere: adding a `vsphere_virtual_machine` migration [GH-7023]
   170   * provider/vsphere: Don't require vsphere debug paths to be set [GH-7027]
   171   * provider/vsphere: Fix bug where `enable_disk_uuid` was not set on `vsphere_virtual_machine` resources [GH-7275]
   172  
   173  ## 0.6.16 (May 9, 2016)
   174  
   175  BACKWARDS INCOMPATIBILITIES / NOTES:
   176  
   177   * provider/aws: `aws_eip` field `private_ip` is now a computed value, and cannot be set in your configuration. 
   178      Use `associate_with_private_ip` instead. See ([#6521](https://github.com/hashicorp/terraform/issues/6521))
   179  
   180  FEATURES:
   181  
   182   * **New provider:** `librato` ([#3371](https://github.com/hashicorp/terraform/issues/3371))
   183   * **New provider:** `softlayer` ([#4327](https://github.com/hashicorp/terraform/issues/4327))
   184   * **New resource:** `aws_api_gateway_account` ([#6321](https://github.com/hashicorp/terraform/issues/6321))
   185   * **New resource:** `aws_api_gateway_authorizer` ([#6320](https://github.com/hashicorp/terraform/issues/6320))
   186   * **New resource:** `aws_db_event_subscription` ([#6367](https://github.com/hashicorp/terraform/issues/6367))
   187   * **New resource:** `aws_db_option_group` ([#4401](https://github.com/hashicorp/terraform/issues/4401))
   188   * **New resource:** `aws_eip_association` ([#6552](https://github.com/hashicorp/terraform/issues/6552))
   189   * **New resource:** `openstack_networking_secgroup_rule_v2` ([#6410](https://github.com/hashicorp/terraform/issues/6410)) 
   190   * **New resource:** `openstack_networking_secgroup_v2` ([#6410](https://github.com/hashicorp/terraform/issues/6410))
   191   * **New resource:** `vsphere_file` ([#6401](https://github.com/hashicorp/terraform/issues/6401))
   192  
   193  IMPROVEMENTS:
   194  
   195   * core: update HCL dependency to improve whitespace handling in `terraform fmt` ([#6347](https://github.com/hashicorp/terraform/issues/6347))
   196   * core: Add support for marking outputs as sensitive ([#6559](https://github.com/hashicorp/terraform/issues/6559))
   197   * provider/aws: Add agent_version argument to `aws_opswork_stack` ([#6493](https://github.com/hashicorp/terraform/issues/6493)) 
   198   * provider/aws: Add support for request parameters to `api_gateway_method` & `api_gateway_integration` ([#6501](https://github.com/hashicorp/terraform/issues/6501))
   199   * provider/aws: Add support for response parameters to `api_gateway_method_response` & `api_gateway_integration_response` ([#6344](https://github.com/hashicorp/terraform/issues/6344))
   200   * provider/aws: Allow empty S3 config in Cloudfront Origin ([#6487](https://github.com/hashicorp/terraform/issues/6487))
   201   * provider/aws: Improve error handling in IAM Server Certificates ([#6442](https://github.com/hashicorp/terraform/issues/6442))
   202   * provider/aws: Use `sts:GetCallerIdentity` as additional method for getting AWS account ID ([#6385](https://github.com/hashicorp/terraform/issues/6385))
   203   * provider/aws: `aws_redshift_cluster` `automated_snapshot_retention_period` didn't allow 0 value ([#6537](https://github.com/hashicorp/terraform/issues/6537))
   204   * provider/aws: Add CloudFront `hosted_zone_id` attribute ([#6530](https://github.com/hashicorp/terraform/issues/6530))
   205   * provider/azurerm: Increase timeout for ARM Template deployments to 40 minutes ([#6319](https://github.com/hashicorp/terraform/issues/6319))
   206   * provider/azurerm: Make `private_ip_address` an exported field on `azurerm_network_interface` ([#6538](https://github.com/hashicorp/terraform/issues/6538))
   207   * provider/azurerm: Add support for `tags` to `azurerm_virtual_machine` ([#6556](https://github.com/hashicorp/terraform/issues/6556))
   208   * provider/azurerm: Add `os_type` and `image_uri` in `azurerm_virtual_machine` ([#6553](https://github.com/hashicorp/terraform/issues/6553))
   209   * provider/cloudflare: Add proxied option to `cloudflare_record` ([#5508](https://github.com/hashicorp/terraform/issues/5508))
   210   * provider/docker: Add ability to keep docker image locally on terraform destroy ([#6376](https://github.com/hashicorp/terraform/issues/6376))
   211   * provider/fastly: Add S3 Log Streaming to Fastly Service ([#6378](https://github.com/hashicorp/terraform/issues/6378))
   212   * provider/fastly: Add Conditions to Fastly Service ([#6481](https://github.com/hashicorp/terraform/issues/6481))
   213   * provider/github: Add support for Github Enterprise via base_url configuration option ([#6434](https://github.com/hashicorp/terraform/issues/6434))
   214   * provider/triton: Add support for specifying network interfaces on `triton machine` resources ([#6418](https://github.com/hashicorp/terraform/issues/6418))
   215   * provider/triton: Deleted firewall rules no longer prevent refresh ([#6529](https://github.com/hashicorp/terraform/issues/6529))
   216   * provider/vsphere: Add `skip_customization` option to `vsphere_virtual_machine` resources ([#6355](https://github.com/hashicorp/terraform/issues/6355))
   217   * provider/vsphere: Add ability to specify and mount bootable vmdk in `vsphere_virtual_machine` ([#6146](https://github.com/hashicorp/terraform/issues/6146))
   218   * provider/vsphere: Add support for IPV6 to `vsphere_virtual_machine` ([#6457](https://github.com/hashicorp/terraform/issues/6457))
   219   * provider/vsphere: Add support for `memory_reservation` to `vsphere_virtual_machine` ([#6036](https://github.com/hashicorp/terraform/issues/6036))
   220   * provider/vsphere: Checking for empty diskPath in `vsphere_virtual_machine` before creating ([#6400](https://github.com/hashicorp/terraform/issues/6400))
   221   * provider/vsphere: Support updates to vcpu and memory on `vsphere_virtual_machine` ([#6356](https://github.com/hashicorp/terraform/issues/6356))
   222   * remote/s3: Logic for loading credentials now follows the same [conventions as AWS provider](https://www.terraform.io/docs/providers/aws/index.html#authentication) which means it also supports EC2 role auth and session token (e.g. assumed IAM Roles) ([#5270](https://github.com/hashicorp/terraform/issues/5270))
   223  
   224  BUG FIXES:
   225  
   226   * core: Boolean values in diffs are normalized to `true` and `false`, eliminating some erroneous diffs ([#6499](https://github.com/hashicorp/terraform/issues/6499))
   227   * core: Fix a bug causing "attribute not found" messages during destroy ([#6557](https://github.com/hashicorp/terraform/issues/6557))
   228   * provider/aws: Allow account ID checks on EC2 instances & w/ federated accounts ([#5030](https://github.com/hashicorp/terraform/issues/5030))
   229   * provider/aws: Fix an eventually consistent issue aws_security_group_rule and possible duplications ([#6325](https://github.com/hashicorp/terraform/issues/6325))
   230   * provider/aws: Fix bug where `aws_elastic_beanstalk_environment` ignored `wait_for_ready_timeout` ([#6358](https://github.com/hashicorp/terraform/issues/6358))
   231   * provider/aws: Fix bug where `aws_elastic_beanstalk_environment` update config template didn't work ([#6342](https://github.com/hashicorp/terraform/issues/6342))
   232   * provider/aws: Fix issue in updating CloudFront distribution LoggingConfig ([#6407](https://github.com/hashicorp/terraform/issues/6407))
   233   * provider/aws: Fix issue in upgrading AutoScaling Policy to use `min_adjustment_magnitude` ([#6440](https://github.com/hashicorp/terraform/issues/6440))
   234   * provider/aws: Fix issue replacing Network ACL Relationship ([#6421](https://github.com/hashicorp/terraform/issues/6421))
   235   * provider/aws: Fix issue with KMS Alias keys and name prefixes ([#6328](https://github.com/hashicorp/terraform/issues/6328))
   236   * provider/aws: Fix issue with encrypted snapshots of block devices in `aws_launch_configuration` resources ([#6452](https://github.com/hashicorp/terraform/issues/6452))
   237   * provider/aws: Fix read of `aws_cloudwatch_log_group` after an update is applied ([#6384](https://github.com/hashicorp/terraform/issues/6384))
   238   * provider/aws: Fix updating `number_of_nodes` on `aws_redshift_cluster` ([#6333](https://github.com/hashicorp/terraform/issues/6333))
   239   * provider/aws: Omit `aws_cloudfront_distribution` custom_error fields when not explicitly set ([#6382](https://github.com/hashicorp/terraform/issues/6382))
   240   * provider/aws: Refresh state on `aws_sqs_queue` not found ([#6381](https://github.com/hashicorp/terraform/issues/6381))
   241   * provider/aws: Respect `selection_pattern` in `aws_api_gateway_integration_response` (previously ignored field) ([#5893](https://github.com/hashicorp/terraform/issues/5893))
   242   * provider/aws: `aws_cloudfront_distribution` resources now require the `cookies` argument ([#6505](https://github.com/hashicorp/terraform/issues/6505))
   243   * provider/aws: `aws_route` crash when used with `aws_vpc_endpoint` ([#6338](https://github.com/hashicorp/terraform/issues/6338))
   244   * provider/aws: validate `cluster_id` length for `aws_elasticache_cluster` ([#6330](https://github.com/hashicorp/terraform/issues/6330))
   245   * provider/azurerm: `ssh_keys` can now be set for `azurerm_virtual_machine` resources, allowing provisioning ([#6541](https://github.com/hashicorp/terraform/issues/6541))
   246   * provider/azurerm: Fix issue that updating `azurerm_virtual_machine` was failing due to empty adminPassword ([#6528](https://github.com/hashicorp/terraform/issues/6528))
   247   * provider/azurerm: `storage_data_disk` settings now work correctly on `azurerm_virtual_machine` resources ([#6543](https://github.com/hashicorp/terraform/issues/6543))
   248   * provider/cloudflare: can manage apex records ([#6449](https://github.com/hashicorp/terraform/issues/6449))
   249   * provider/cloudflare: won't refresh with incorrect record if names match ([#6449](https://github.com/hashicorp/terraform/issues/6449))
   250   * provider/datadog: `notify_no_data` and `no_data_timeframe` are set correctly for `datadog_monitor` resources ([#6509](https://github.com/hashicorp/terraform/issues/6509))
   251   * provider/docker: Fix crash when using empty string in the `command` list in `docker_container` resources ([#6424](https://github.com/hashicorp/terraform/issues/6424))
   252   * provider/vsphere: Memory reservations are now set correctly in `vsphere_virtual_machine` resources ([#6482](https://github.com/hashicorp/terraform/issues/6482))
   253  
   254  ## 0.6.15 (April 22, 2016)
   255  
   256  BACKWARDS INCOMPATIBILITIES / NOTES:
   257   * `aws_instance` - if you still use `security_groups` field for SG IDs - i.e. inside VPC, this will generate diffs during `plan` and `apply` will **recreate** the resource. Terraform expects IDs (VPC SGs) inside `vpc_security_group_ids`.
   258  
   259  FEATURES:
   260  
   261   * **New command:** `terraform fmt` to automatically normalize config file style ([#4955](https://github.com/hashicorp/terraform/issues/4955))
   262   * **New interpolation function:** `jsonencode` ([#5890](https://github.com/hashicorp/terraform/issues/5890))
   263   * **New provider:** `cobbler` ([#5969](https://github.com/hashicorp/terraform/issues/5969))
   264   * **New provider:** `fastly` ([#5814](https://github.com/hashicorp/terraform/issues/5814))
   265   * **New resource:** `aws_cloudfront_distribution` ([#5221](https://github.com/hashicorp/terraform/issues/5221))
   266   * **New resource:** `aws_cloudfront_origin_access_identity` ([#5221](https://github.com/hashicorp/terraform/issues/5221))
   267   * **New resource:** `aws_iam_user_ssh_key` ([#5774](https://github.com/hashicorp/terraform/issues/5774))
   268   * **New resource:** `aws_s3_bucket_notification` ([#5473](https://github.com/hashicorp/terraform/issues/5473))
   269   * **New resource:** `cloudstack_static_nat` ([#6004](https://github.com/hashicorp/terraform/issues/6004))
   270   * **New resource:** `consul_key_prefix` ([#5988](https://github.com/hashicorp/terraform/issues/5988))
   271   * **New resource:** `aws_default_network_acl` ([#6165](https://github.com/hashicorp/terraform/issues/6165))
   272   * **New resource:** `triton_fabric` ([#5920](https://github.com/hashicorp/terraform/issues/5920))
   273   * **New resource:** `triton_vlan` ([#5920](https://github.com/hashicorp/terraform/issues/5920))
   274   * **New resource:** `aws_opsworks_application` ([#4419](https://github.com/hashicorp/terraform/issues/4419))
   275   * **New resource:** `aws_opsworks_instance` ([#4276](https://github.com/hashicorp/terraform/issues/4276))
   276   * **New resource:** `aws_cloudwatch_log_subscription_filter` ([#5996](https://github.com/hashicorp/terraform/issues/5996))
   277   * **New resource:** `openstack_networking_router_route_v2` ([#6207](https://github.com/hashicorp/terraform/issues/6207))
   278  
   279  IMPROVEMENTS:
   280  
   281   * command/apply: Output will now show periodic status updates of slow resources. ([#6163](https://github.com/hashicorp/terraform/issues/6163))
   282   * core: Variables passed between modules are now type checked ([#6185](https://github.com/hashicorp/terraform/issues/6185))
   283   * core: Smaller release binaries by stripping debug information ([#6238](https://github.com/hashicorp/terraform/issues/6238))
   284   * provider/aws: Add support for Step Scaling in `aws_autoscaling_policy` ([#4277](https://github.com/hashicorp/terraform/issues/4277))
   285   * provider/aws: Add support for `cname_prefix` to `aws_elastic_beanstalk_environment` resource ([#5966](https://github.com/hashicorp/terraform/issues/5966))
   286   * provider/aws: Add support for trigger_configuration to `aws_codedeploy_deployment_group` ([#5599](https://github.com/hashicorp/terraform/issues/5599))
   287   * provider/aws: Adding outputs for elastic_beanstalk_environment resource ([#5915](https://github.com/hashicorp/terraform/issues/5915))
   288   * provider/aws: Adds `wait_for_ready_timeout` option to `aws_elastic_beanstalk_environment` ([#5967](https://github.com/hashicorp/terraform/issues/5967))
   289   * provider/aws: Allow `aws_db_subnet_group` description to be updated ([#5921](https://github.com/hashicorp/terraform/issues/5921))
   290   * provider/aws: Allow multiple EIPs to associate to single ENI ([#6070](https://github.com/hashicorp/terraform/issues/6070))
   291   * provider/aws: Change `aws_elb` access_logs to list type ([#5065](https://github.com/hashicorp/terraform/issues/5065))
   292   * provider/aws: Check that InternetGateway exists before returning from creation ([#6105](https://github.com/hashicorp/terraform/issues/6105))
   293   * provider/aws: Don't Base64-encode EC2 userdata if it is already Base64 encoded ([#6140](https://github.com/hashicorp/terraform/issues/6140))
   294   * provider/aws: Making the Cloudwatch Event Rule Target `target_id` optional ([#5787](https://github.com/hashicorp/terraform/issues/5787))
   295   * provider/aws: Timeouts for `elasticsearch_domain` are increased ([#5910](https://github.com/hashicorp/terraform/issues/5910))
   296   * provider/aws: `aws_codecommit_repository` set `default_branch` only if defined ([#5904](https://github.com/hashicorp/terraform/issues/5904))
   297   * provider/aws: `aws_redshift_cluster` allows usernames with underscore in it ([#5935](https://github.com/hashicorp/terraform/issues/5935))
   298   * provider/aws: normalise json for `aws_sns_topic` ([#6089](https://github.com/hashicorp/terraform/issues/6089))
   299   * provider/aws: normalize json for `aws_cloudwatch_event_rule` ([#6025](https://github.com/hashicorp/terraform/issues/6025))
   300   * provider/aws: increase timeout for aws_redshift_cluster ([#6305](https://github.com/hashicorp/terraform/issues/6305))
   301   * provider/aws: Opsworks layers now support `custom_json` argument ([#4272](https://github.com/hashicorp/terraform/issues/4272))
   302   * provider/aws: Added migration for `tier` attribute in `aws_elastic_beanstalk_environment` ([#6167](https://github.com/hashicorp/terraform/issues/6167))
   303   * provider/aws: Use resource.Retry for route creation and deletion ([#6225](https://github.com/hashicorp/terraform/issues/6225))
   304   * provider/aws: Add support S3 Bucket Lifecycle Rule ([#6220](https://github.com/hashicorp/terraform/issues/6220))
   305   * provider/clc: Override default `account` alias in provider config ([#5785](https://github.com/hashicorp/terraform/issues/5785))
   306   * provider/cloudstack: Deprecate `ipaddress` in favour of `ip_address` in all resources ([#6010](https://github.com/hashicorp/terraform/issues/6010))
   307   * provider/cloudstack: Deprecate allowing names (instead of IDs) for parameters that reference other resources ([#6123](https://github.com/hashicorp/terraform/issues/6123))
   308   * provider/datadog: Add heredoc support to message, escalation_message, and query ([#5788](https://github.com/hashicorp/terraform/issues/5788))
   309   * provider/docker: Add support for docker run --user option ([#5300](https://github.com/hashicorp/terraform/issues/5300))
   310   * provider/github: Add support for privacy to `github_team` ([#6116](https://github.com/hashicorp/terraform/issues/6116))
   311   * provider/google: Accept GOOGLE_CLOUD_KEYFILE_JSON env var for credentials ([#6007](https://github.com/hashicorp/terraform/issues/6007))
   312   * provider/google: Add "project" argument and attribute to all GCP compute resources which inherit from the provider's value ([#6112](https://github.com/hashicorp/terraform/issues/6112))
   313   * provider/google: Make "project" attribute on provider configuration optional ([#6112](https://github.com/hashicorp/terraform/issues/6112))
   314   * provider/google: Read more common configuration values from the environment and clarify precedence ordering ([#6114](https://github.com/hashicorp/terraform/issues/6114))
   315   * provider/google: `addons_config` and `subnetwork` added as attributes to `google_container_cluster` ([#5871](https://github.com/hashicorp/terraform/issues/5871))
   316   * provider/fastly: Add support for Request Headers ([#6197](https://github.com/hashicorp/terraform/issues/6197))
   317   * provider/fastly: Add support for Gzip rules ([#6247](https://github.com/hashicorp/terraform/issues/6247))
   318   * provider/openstack: Add value_specs argument and attribute for routers ([#4898](https://github.com/hashicorp/terraform/issues/4898))
   319   * provider/openstack: Allow subnets with no gateway ([#6060](https://github.com/hashicorp/terraform/issues/6060))
   320   * provider/openstack: Enable Token Authentication ([#6081](https://github.com/hashicorp/terraform/issues/6081))
   321   * provider/postgresql: New `ssl_mode` argument allowing different SSL usage tradeoffs ([#6008](https://github.com/hashicorp/terraform/issues/6008))
   322   * provider/vsphere: Support for linked clones and Windows-specific guest config options ([#6087](https://github.com/hashicorp/terraform/issues/6087))
   323   * provider/vsphere: Checking for Powered Off State before `vsphere_virtual_machine` deletion ([#6283](https://github.com/hashicorp/terraform/issues/6283))
   324   * provider/vsphere: Support mounting ISO images to virtual cdrom drives ([#4243](https://github.com/hashicorp/terraform/issues/4243))
   325   * provider/vsphere: Fix missing ssh connection info ([#4283](https://github.com/hashicorp/terraform/issues/4283))
   326   * provider/google: Deprecate unused "region" attribute in `global_forwarding_rule`; this attribute was never used anywhere in the computation of the resource ([#6112](https://github.com/hashicorp/terraform/issues/6112))
   327   * provider/cloudstack: Add group attribute to `cloudstack_instance` resource ([#6023](https://github.com/hashicorp/terraform/issues/6023))
   328   * provider/azurerm: Provider meaningful error message when credentials not correct ([#6290](https://github.com/hashicorp/terraform/issues/6290))
   329   * provider/cloudstack: Improve support for using projects ([#6282](https://github.com/hashicorp/terraform/issues/6282))
   330  
   331  BUG FIXES:
   332  
   333   * core: Providers are now correctly inherited down a nested module tree ([#6186](https://github.com/hashicorp/terraform/issues/6186))
   334   * provider/aws: Convert protocols to standard format for Security Groups ([#5881](https://github.com/hashicorp/terraform/issues/5881))
   335   * provider/aws: Fix Lambda VPC integration (missing `vpc_id` field in schema) ([#6157](https://github.com/hashicorp/terraform/issues/6157))
   336   * provider/aws: Fix `aws_route panic` when destination CIDR block is nil ([#5781](https://github.com/hashicorp/terraform/issues/5781))
   337   * provider/aws: Fix issue re-creating deleted VPC peering connections ([#5959](https://github.com/hashicorp/terraform/issues/5959))
   338   * provider/aws: Fix issue with changing iops when also changing storage type to io1 on RDS ([#5676](https://github.com/hashicorp/terraform/issues/5676))
   339   * provider/aws: Fix issue with retrying deletion of Network ACLs ([#5954](https://github.com/hashicorp/terraform/issues/5954))
   340   * provider/aws: Fix potential crash when receiving malformed `aws_route` API responses ([#5867](https://github.com/hashicorp/terraform/issues/5867))
   341   * provider/aws: Guard against empty responses from Lambda Permissions ([#5838](https://github.com/hashicorp/terraform/issues/5838))
   342   * provider/aws: Normalize and compact SQS Redrive, Policy JSON ([#5888](https://github.com/hashicorp/terraform/issues/5888))
   343   * provider/aws: Fix issue updating ElasticBeanstalk Configuraiton Templates ([#6307](https://github.com/hashicorp/terraform/issues/6307))
   344   * provider/aws: Remove CloudTrail Trail from state if not found ([#6024](https://github.com/hashicorp/terraform/issues/6024))
   345   * provider/aws: Fix crash in AWS S3 Bucket when website index/error is empty ([#6269](https://github.com/hashicorp/terraform/issues/6269))
   346   * provider/aws: Report better error message in `aws_route53_record` when `set_identifier` is required ([#5777](https://github.com/hashicorp/terraform/issues/5777))
   347   * provider/aws: Show human-readable error message when failing to read an EBS volume ([#6038](https://github.com/hashicorp/terraform/issues/6038))
   348   * provider/aws: set ASG `health_check_grace_period` default to 300 ([#5830](https://github.com/hashicorp/terraform/issues/5830))
   349   * provider/aws: Fix issue with with Opsworks and empty Custom Cook Book sources ([#6078](https://github.com/hashicorp/terraform/issues/6078))
   350   * provider/aws: wait for IAM instance profile to propagate when creating Opsworks stacks ([#6049](https://github.com/hashicorp/terraform/issues/6049))
   351   * provider/aws: Don't read back `aws_opsworks_stack` cookbooks source password ([#6203](https://github.com/hashicorp/terraform/issues/6203))
   352   * provider/aws: Resolves DefaultOS and ConfigurationManager conflict on `aws_opsworks_stack` ([#6244](https://github.com/hashicorp/terraform/issues/6244))
   353   * provider/aws: Renaming `aws_elastic_beanstalk_configuration_template``option_settings` to `setting` ([#6043](https://github.com/hashicorp/terraform/issues/6043))
   354   * provider/aws: `aws_customer_gateway` will properly populate `bgp_asn` on refresh. [no issue]
   355   * provider/aws: provider/aws: Refresh state on `aws_directory_service_directory` not found ([#6294](https://github.com/hashicorp/terraform/issues/6294))
   356   * provider/aws: `aws_elb` `cross_zone_load_balancing` is not refreshed in the state file ([#6295](https://github.com/hashicorp/terraform/issues/6295))
   357   * provider/aws: `aws_autoscaling_group` will properly populate `tag` on refresh. [no issue]
   358   * provider/azurerm: Fix detection of `azurerm_storage_account` resources removed manually ([#5878](https://github.com/hashicorp/terraform/issues/5878))
   359   * provider/docker: Docker Image will be deleted on destroy ([#5801](https://github.com/hashicorp/terraform/issues/5801))
   360   * provider/openstack: Fix Disabling DHCP on Subnets ([#6052](https://github.com/hashicorp/terraform/issues/6052))
   361   * provider/openstack: Fix resizing when Flavor Name changes ([#6020](https://github.com/hashicorp/terraform/issues/6020))
   362   * provider/openstack: Fix Access Address Detection ([#6181](https://github.com/hashicorp/terraform/issues/6181))
   363   * provider/openstack: Fix admin_state_up on openstack_lb_member_v1 ([#6267](https://github.com/hashicorp/terraform/issues/6267))
   364   * provider/triton: Firewall status on `triton_machine` resources is reflected correctly ([#6119](https://github.com/hashicorp/terraform/issues/6119))
   365   * provider/triton: Fix time out when applying updates to Triton machine metadata ([#6149](https://github.com/hashicorp/terraform/issues/6149))
   366   * provider/vsphere: Add error handling to `vsphere_folder` ([#6095](https://github.com/hashicorp/terraform/issues/6095))
   367   * provider/cloudstack: Fix mashalling errors when using CloudStack 4.7.x (or newer) [GH-#226]
   368  
   369  ## 0.6.14 (March 21, 2016)
   370  
   371  FEATURES:
   372  
   373    * **New provider:** `triton` - Manage Joyent Triton public cloud or on-premise installations ([#5738](https://github.com/hashicorp/terraform/issues/5738))
   374    * **New provider:** `clc` - Manage CenturyLink Cloud resources ([#4893](https://github.com/hashicorp/terraform/issues/4893))
   375    * **New provider:** `github` - Manage GitHub Organization permissions with Terraform config ([#5194](https://github.com/hashicorp/terraform/issues/5194))
   376    * **New provider:** `influxdb` - Manage InfluxDB databases ([#3478](https://github.com/hashicorp/terraform/issues/3478))
   377    * **New provider:** `ultradns` - Manage UltraDNS records ([#5716](https://github.com/hashicorp/terraform/issues/5716))
   378    * **New resource:** `aws_cloudwatch_log_metric_filter` ([#5444](https://github.com/hashicorp/terraform/issues/5444))
   379    * **New resource:** `azurerm_virtual_machine` ([#5514](https://github.com/hashicorp/terraform/issues/5514))
   380    * **New resource:** `azurerm_template_deployment` ([#5758](https://github.com/hashicorp/terraform/issues/5758))
   381    * **New interpolation function:** `uuid` ([#5575](https://github.com/hashicorp/terraform/issues/5575))
   382  
   383  IMPROVEMENTS:
   384  
   385    * core: provisioners connecting via WinRM now respect HTTPS settings  ([#5761](https://github.com/hashicorp/terraform/issues/5761))
   386    * provider/aws: `aws_db_instance` now makes `identifier` optional and generates a unique ID when it is omitted ([#5723](https://github.com/hashicorp/terraform/issues/5723))
   387    * provider/aws: `aws_redshift_cluster` now allows`publicly_accessible` to be modified ([#5721](https://github.com/hashicorp/terraform/issues/5721))
   388    * provider/aws: `aws_kms_alias` now allows name to be auto-generated with a `name_prefix` ([#5594](https://github.com/hashicorp/terraform/issues/5594))
   389  
   390  BUG FIXES:
   391  
   392    * core: Color output is now shown correctly when running Terraform on Windows ([#5718](https://github.com/hashicorp/terraform/issues/5718))
   393    * core: HEREDOCs can now be indented in line with configuration using `<<-` and hanging indent is removed ([#5740](https://github.com/hashicorp/terraform/issues/5740))
   394    * core: Invalid HCL syntax of nested object blocks no longer causes a crash ([#5740](https://github.com/hashicorp/terraform/issues/5740))
   395    * core: Local directory-based modules now use junctions instead of symbolic links on Windows ([#5739](https://github.com/hashicorp/terraform/issues/5739))
   396    * core: Modules sourced from a Mercurial repository now work correctly on Windows ([#5739](https://github.com/hashicorp/terraform/issues/5739))
   397    * core: Address some issues with ignore_changes ([#5635](https://github.com/hashicorp/terraform/issues/5635))
   398    * core: Add a lock to fix an interpolation issue caught by the Go 1.6 concurrent map access detector ([#5772](https://github.com/hashicorp/terraform/issues/5772))
   399    * provider/aws: Fix crash when an `aws_rds_cluster_instance` is removed outside of Terraform ([#5717](https://github.com/hashicorp/terraform/issues/5717))
   400    * provider/aws: `aws_cloudformation_stack` use `timeout_in_minutes` for retry timeout to prevent unecessary timeouts ([#5712](https://github.com/hashicorp/terraform/issues/5712))
   401    * provider/aws: `aws_lambda_function` resources no longer error on refresh if deleted externally to Terraform ([#5668](https://github.com/hashicorp/terraform/issues/5668))
   402    * provider/aws: `aws_vpn_connection` resources deleted via the console on longer cause a crash ([#5747](https://github.com/hashicorp/terraform/issues/5747))
   403    * provider/aws: Fix crasher in Elastic Beanstalk Configuration when using options ([#5756](https://github.com/hashicorp/terraform/issues/5756))
   404    * provider/aws: Fix issue preventing `aws_opsworks_stck` from working with Windows set as the OS ([#5724](https://github.com/hashicorp/terraform/issues/5724))
   405    * provider/digitalocean: `digitalocean_ssh_key` resources no longer cause a panic if there is no network connectivity ([#5748](https://github.com/hashicorp/terraform/issues/5748))
   406    * provider/google: Default description `google_dns_managed_zone` resources to "Managed By Terraform" ([#5428](https://github.com/hashicorp/terraform/issues/5428))
   407    * provider/google: Fix error message on invalid instance URL for `google_compute_instance_group` ([#5715](https://github.com/hashicorp/terraform/issues/5715))
   408    * provider/vsphere: provide `host` to provisioner connections ([#5558](https://github.com/hashicorp/terraform/issues/5558))
   409    * provisioner/remote-exec: Address race condition introduced with script cleanup step introduced in 0.6.13 ([#5751](https://github.com/hashicorp/terraform/issues/5751))
   410  
   411  ## 0.6.13 (March 16, 2016)
   412  
   413  BACKWARDS INCOMPATIBILITIES / NOTES:
   414  
   415    * provider/aws: `aws_s3_bucket_object` field `etag` is now trimming off quotes (returns raw MD5 hash) ([#5305](https://github.com/hashicorp/terraform/issues/5305))
   416    * provider/aws: `aws_autoscaling_group` now supports metrics collection, so a diff installing the default value of `1Minute` for the `metrics_granularity` field is expected. This diff should resolve in the next `terraform apply` w/ no AWS API calls ([#4688](https://github.com/hashicorp/terraform/issues/4688))
   417    * provider/consul: `consul_keys` `key` blocks now respect `delete` flag for removing individual blocks. Previously keys would be deleted only when the entire resource was removed.
   418    * provider/google: `next_hop_network` on `google_compute_route` is now read-only, to mirror the behavior in the official docs ([#5564](https://github.com/hashicorp/terraform/issues/5564))
   419    * state/remote/http: PUT requests for this backend will now have `Content-Type: application/json` instead of `application/octet-stream` ([#5499](https://github.com/hashicorp/terraform/issues/5499))
   420  
   421  FEATURES:
   422  
   423    * **New command:** `terraform untaint` ([#5527](https://github.com/hashicorp/terraform/issues/5527))
   424    * **New resource:** `aws_api_gateway_api_key` ([#4295](https://github.com/hashicorp/terraform/issues/4295))
   425    * **New resource:** `aws_api_gateway_deployment` ([#4295](https://github.com/hashicorp/terraform/issues/4295))
   426    * **New resource:** `aws_api_gateway_integration_response` ([#4295](https://github.com/hashicorp/terraform/issues/4295))
   427    * **New resource:** `aws_api_gateway_integration` ([#4295](https://github.com/hashicorp/terraform/issues/4295))
   428    * **New resource:** `aws_api_gateway_method_response` ([#4295](https://github.com/hashicorp/terraform/issues/4295))
   429    * **New resource:** `aws_api_gateway_method` ([#4295](https://github.com/hashicorp/terraform/issues/4295))
   430    * **New resource:** `aws_api_gateway_model` ([#4295](https://github.com/hashicorp/terraform/issues/4295))
   431    * **New resource:** `aws_api_gateway_resource` ([#4295](https://github.com/hashicorp/terraform/issues/4295))
   432    * **New resource:** `aws_api_gateway_rest_api` ([#4295](https://github.com/hashicorp/terraform/issues/4295))
   433    * **New resource:** `aws_elastic_beanstalk_application` ([#3157](https://github.com/hashicorp/terraform/issues/3157))
   434    * **New resource:** `aws_elastic_beanstalk_configuration_template` ([#3157](https://github.com/hashicorp/terraform/issues/3157))
   435    * **New resource:** `aws_elastic_beanstalk_environment` ([#3157](https://github.com/hashicorp/terraform/issues/3157))
   436    * **New resource:** `aws_iam_account_password_policy` ([#5029](https://github.com/hashicorp/terraform/issues/5029))
   437    * **New resource:** `aws_kms_alias` ([#3928](https://github.com/hashicorp/terraform/issues/3928))
   438    * **New resource:** `aws_kms_key` ([#3928](https://github.com/hashicorp/terraform/issues/3928))
   439    * **New resource:** `google_compute_instance_group` ([#4087](https://github.com/hashicorp/terraform/issues/4087))
   440  
   441  IMPROVEMENTS:
   442  
   443    * provider/aws: Add `repository_link` as a computed field for `aws_ecr_repository` ([#5524](https://github.com/hashicorp/terraform/issues/5524))
   444    * provider/aws: Add ability to update Route53 zone comments ([#5318](https://github.com/hashicorp/terraform/issues/5318))
   445    * provider/aws: Add support for Metrics Collection to `aws_autoscaling_group` ([#4688](https://github.com/hashicorp/terraform/issues/4688))
   446    * provider/aws: Add support for `description` to `aws_network_interface` ([#5523](https://github.com/hashicorp/terraform/issues/5523))
   447    * provider/aws: Add support for `storage_encrypted` to `aws_rds_cluster` ([#5520](https://github.com/hashicorp/terraform/issues/5520))
   448    * provider/aws: Add support for routing rules on `aws_s3_bucket` resources ([#5327](https://github.com/hashicorp/terraform/issues/5327))
   449    * provider/aws: Enable updates & versioning for `aws_s3_bucket_object` ([#5305](https://github.com/hashicorp/terraform/issues/5305))
   450    * provider/aws: Guard against Nil Reference in Redshift Endpoints ([#5593](https://github.com/hashicorp/terraform/issues/5593))
   451    * provider/aws: Lambda S3 object version defaults to `$LATEST` if unspecified ([#5370](https://github.com/hashicorp/terraform/issues/5370))
   452    * provider/aws: Retry DB Creation on IAM propigation error ([#5515](https://github.com/hashicorp/terraform/issues/5515))
   453    * provider/aws: Support KMS encryption of S3 objects ([#5453](https://github.com/hashicorp/terraform/issues/5453))
   454    * provider/aws: `aws_autoscaling_lifecycle_hook` now have `notification_target_arn` and `role_arn` as optional ([#5616](https://github.com/hashicorp/terraform/issues/5616))
   455    * provider/aws: `aws_ecs_service` validates number of `load_balancer`s before creation/updates ([#5605](https://github.com/hashicorp/terraform/issues/5605))
   456    * provider/aws: send Terraform version in User-Agent ([#5621](https://github.com/hashicorp/terraform/issues/5621))
   457    * provider/cloudflare: Change `cloudflare_record` type to ForceNew ([#5353](https://github.com/hashicorp/terraform/issues/5353))
   458    * provider/consul: `consul_keys` now detects drift and supports deletion of individual `key` blocks ([#5210](https://github.com/hashicorp/terraform/issues/5210))
   459    * provider/digitalocean: Guard against Nil reference in `digitalocean_droplet` ([#5588](https://github.com/hashicorp/terraform/issues/5588))
   460    * provider/docker: Add support for `unless-stopped` to docker container `restart_policy` ([#5337](https://github.com/hashicorp/terraform/issues/5337))
   461    * provider/google: Mark `next_hop_network` as read-only on `google_compute_route` ([#5564](https://github.com/hashicorp/terraform/issues/5564))
   462    * provider/google: Validate VPN tunnel peer_ip at plan time ([#5501](https://github.com/hashicorp/terraform/issues/5501))
   463    * provider/openstack: Add Support for Domain ID and Domain Name environment variables ([#5355](https://github.com/hashicorp/terraform/issues/5355))
   464    * provider/openstack: Add support for instances to have multiple ephemeral disks. ([#5131](https://github.com/hashicorp/terraform/issues/5131))
   465    * provider/openstack: Re-Add server.AccessIPv4 and server.AccessIPv6 ([#5366](https://github.com/hashicorp/terraform/issues/5366))
   466    * provider/vsphere: Add support for disk init types ([#4284](https://github.com/hashicorp/terraform/issues/4284))
   467    * provisioner/remote-exec: Clear out scripts after uploading ([#5577](https://github.com/hashicorp/terraform/issues/5577))
   468    * state/remote/http: Change content type of PUT requests to the more appropriate `application/json` ([#5499](https://github.com/hashicorp/terraform/issues/5499))
   469  
   470  BUG FIXES:
   471  
   472    * core: Disallow negative indices in the element() interpolation function, preventing crash ([#5263](https://github.com/hashicorp/terraform/issues/5263))
   473    * core: Fix issue that caused tainted resource destroys to be improperly filtered out when using -target and a plan file ([#5516](https://github.com/hashicorp/terraform/issues/5516))
   474    * core: Fix several issues with retry logic causing spurious "timeout while waiting for state to become ..." errors and unnecessary retry loops ([#5460](https://github.com/hashicorp/terraform/issues/5460)), ([#5538](https://github.com/hashicorp/terraform/issues/5538)), ([#5543](https://github.com/hashicorp/terraform/issues/5543)), ([#5553](https://github.com/hashicorp/terraform/issues/5553))
   475    * core: Includes upstream HCL fix to properly detect unbalanced braces and throw an error ([#5400](https://github.com/hashicorp/terraform/issues/5400))
   476    * provider/aws: Allow recovering from failed CloudWatch Event Target creation ([#5395](https://github.com/hashicorp/terraform/issues/5395))
   477    * provider/aws: Fix EC2 Classic SG Rule issue when referencing rules by name ([#5533](https://github.com/hashicorp/terraform/issues/5533))
   478    * provider/aws: Fix `aws_cloudformation_stack` update for `parameters` & `capabilities` if unmodified ([#5603](https://github.com/hashicorp/terraform/issues/5603))
   479    * provider/aws: Fix a bug where AWS Kinesis Stream includes closed shards in the shard_count ([#5401](https://github.com/hashicorp/terraform/issues/5401))
   480    * provider/aws: Fix a bug where ElasticSearch Domain tags were not being set correctly ([#5361](https://github.com/hashicorp/terraform/issues/5361))
   481    * provider/aws: Fix a bug where `aws_route` would show continual changes in the plan when not computed ([#5321](https://github.com/hashicorp/terraform/issues/5321))
   482    * provider/aws: Fix a bug where `publicly_assessible` wasn't being set to state in `aws_db_instance` ([#5535](https://github.com/hashicorp/terraform/issues/5535))
   483    * provider/aws: Fix a bug where listener protocol on `aws_elb` resources was case insensitive ([#5376](https://github.com/hashicorp/terraform/issues/5376))
   484    * provider/aws: Fix a bug which caused panics creating rules on security groups in EC2 Classic ([#5329](https://github.com/hashicorp/terraform/issues/5329))
   485    * provider/aws: Fix crash when `aws_lambda_function` VpcId is nil ([#5182](https://github.com/hashicorp/terraform/issues/5182))
   486    * provider/aws: Fix error with parsing JSON in `aws_s3_bucket` policy attribute ([#5474](https://github.com/hashicorp/terraform/issues/5474))
   487    * provider/aws: `aws_lambda_function` can be properly updated, either via `s3_object_version` or via `filename` & `source_code_hash` as described in docs ([#5239](https://github.com/hashicorp/terraform/issues/5239))
   488    * provider/google: Fix managed instance group preemptible instance creation ([#4834](https://github.com/hashicorp/terraform/issues/4834))
   489    * provider/openstack: Account for a 403 reply when os-tenant-networks is disabled ([#5432](https://github.com/hashicorp/terraform/issues/5432))
   490    * provider/openstack: Fix crashing during certain network updates in instances ([#5365](https://github.com/hashicorp/terraform/issues/5365))
   491    * provider/openstack: Fix create/delete statuses in load balancing resources ([#5557](https://github.com/hashicorp/terraform/issues/5557))
   492    * provider/openstack: Fix race condition between instance deletion and volume detachment ([#5359](https://github.com/hashicorp/terraform/issues/5359))
   493    * provider/template: Warn when `template` attribute specified as path ([#5563](https://github.com/hashicorp/terraform/issues/5563))
   494  
   495  INTERNAL IMPROVEMENTS:
   496  
   497    * helper/schema: `MaxItems` attribute on schema lists and sets ([#5218](https://github.com/hashicorp/terraform/issues/5218))
   498  
   499  ## 0.6.12 (February 24, 2016)
   500  
   501  BACKWARDS INCOMPATIBILITIES / NOTES:
   502  
   503    * The `publicly_accessible` attribute on `aws_redshift_cluster` resources now defaults to true
   504  
   505  FEATURES:
   506  
   507    * **New command:** `validate` to perform syntax validation ([#3783](https://github.com/hashicorp/terraform/issues/3783))
   508    * **New provider:** `datadog` ([#5251](https://github.com/hashicorp/terraform/issues/5251))
   509    * **New interpolation function:** `md5` ([#5267](https://github.com/hashicorp/terraform/issues/5267))
   510    * **New interpolation function:** `signum` ([#4854](https://github.com/hashicorp/terraform/issues/4854))
   511    * **New resource:** `aws_cloudwatch_event_rule` ([#4986](https://github.com/hashicorp/terraform/issues/4986))
   512    * **New resource:** `aws_cloudwatch_event_target` ([#4986](https://github.com/hashicorp/terraform/issues/4986))
   513    * **New resource:** `aws_lambda_permission` ([#4826](https://github.com/hashicorp/terraform/issues/4826))
   514    * **New resource:** `azurerm_dns_a_record` ([#5013](https://github.com/hashicorp/terraform/issues/5013))
   515    * **New resource:** `azurerm_dns_aaaa_record` ([#5013](https://github.com/hashicorp/terraform/issues/5013))
   516    * **New resource:** `azurerm_dns_cname_record` ([#5013](https://github.com/hashicorp/terraform/issues/5013))
   517    * **New resource:** `azurerm_dns_mx_record` ([#5041](https://github.com/hashicorp/terraform/issues/5041))
   518    * **New resource:** `azurerm_dns_ns_record` ([#5041](https://github.com/hashicorp/terraform/issues/5041))
   519    * **New resource:** `azurerm_dns_srv_record` ([#5041](https://github.com/hashicorp/terraform/issues/5041))
   520    * **New resource:** `azurerm_dns_txt_record` ([#5041](https://github.com/hashicorp/terraform/issues/5041))
   521    * **New resource:** `azurerm_dns_zone` ([#4979](https://github.com/hashicorp/terraform/issues/4979))
   522    * **New resource:** `azurerm_search_service` ([#5203](https://github.com/hashicorp/terraform/issues/5203))
   523    * **New resource:** `azurerm_sql_database` ([#5003](https://github.com/hashicorp/terraform/issues/5003))
   524    * **New resource:** `azurerm_sql_firewall_rule` ([#5057](https://github.com/hashicorp/terraform/issues/5057))
   525    * **New resource:** `azurerm_sql_server` ([#4991](https://github.com/hashicorp/terraform/issues/4991))
   526    * **New resource:** `google_compute_subnetwork` ([#5130](https://github.com/hashicorp/terraform/issues/5130))
   527  
   528  IMPROVEMENTS:
   529  
   530    * core: Backend names are now down cased during `init` in the same manner as `remote config` ([#5012](https://github.com/hashicorp/terraform/issues/5012))
   531    * core: Upgrade resource name validation warning to an error as planned ([#5272](https://github.com/hashicorp/terraform/issues/5272))
   532    * core: output "diffs didn't match" error details ([#5276](https://github.com/hashicorp/terraform/issues/5276))
   533    * provider/aws: Add `is_multi_region_trail` option to CloudTrail ([#4939](https://github.com/hashicorp/terraform/issues/4939))
   534    * provider/aws: Add support for HTTP(S) endpoints that auto confirm SNS subscription ([#4711](https://github.com/hashicorp/terraform/issues/4711))
   535    * provider/aws: Add support for Tags to CloudTrail ([#5135](https://github.com/hashicorp/terraform/issues/5135))
   536    * provider/aws: Add support for Tags to ElasticSearch ([#4973](https://github.com/hashicorp/terraform/issues/4973))
   537    * provider/aws: Add support for deployment configuration to `aws_ecs_service` ([#5220](https://github.com/hashicorp/terraform/issues/5220))
   538    * provider/aws: Add support for log validation + KMS encryption to `aws_cloudtrail` ([#5051](https://github.com/hashicorp/terraform/issues/5051))
   539    * provider/aws: Allow name-prefix and auto-generated names for IAM Server Cert ([#5178](https://github.com/hashicorp/terraform/issues/5178))
   540    * provider/aws: Expose additional VPN Connection attributes ([#5032](https://github.com/hashicorp/terraform/issues/5032))
   541    * provider/aws: Return an error if no matching route is found for an AWS Route ([#5155](https://github.com/hashicorp/terraform/issues/5155))
   542    * provider/aws: Support custom endpoints for AWS EC2 ELB and IAM ([#5114](https://github.com/hashicorp/terraform/issues/5114))
   543    * provider/aws: The `cluster_type` on `aws_redshift_cluster` resources is now computed ([#5238](https://github.com/hashicorp/terraform/issues/5238))
   544    * provider/aws: `aws_lambda_function` resources now support VPC configuration ([#5149](https://github.com/hashicorp/terraform/issues/5149))
   545    * provider/aws: Add support for Enhanced Monitoring to RDS Instances ([#4945](https://github.com/hashicorp/terraform/issues/4945))
   546    * provider/aws: Improve vpc cidr_block err message ([#5255](https://github.com/hashicorp/terraform/issues/5255))
   547    * provider/aws: Implement Retention Period for `aws_kinesis_stream` ([#5223](https://github.com/hashicorp/terraform/issues/5223))
   548    * provider/aws: Enable `stream_arm` output for DynamoDB Table when streams are enabled ([#5271](https://github.com/hashicorp/terraform/issues/5271))
   549    * provider/digitalocean: `digitalocean_record` resources now export a computed `fqdn` attribute ([#5071](https://github.com/hashicorp/terraform/issues/5071))
   550    * provider/google: Add assigned IP Address to CloudSQL Instance `google_sql_database_instance` ([#5245](https://github.com/hashicorp/terraform/issues/5245))
   551    * provider/openstack: Add support for Distributed Routers ([#4878](https://github.com/hashicorp/terraform/issues/4878))
   552    * provider/openstack: Add support for optional cacert_file parameter ([#5106](https://github.com/hashicorp/terraform/issues/5106))
   553  
   554  BUG FIXES:
   555  
   556    * core: Fix bug detecting deeply nested module orphans ([#5022](https://github.com/hashicorp/terraform/issues/5022))
   557    * core: Fix bug where `ignore_changes` could produce "diffs didn't match during apply" errors ([#4965](https://github.com/hashicorp/terraform/issues/4965))
   558    * core: Fix race condition when handling tainted resource destroys ([#5026](https://github.com/hashicorp/terraform/issues/5026))
   559    * core: Improve handling of Provisioners in the graph, fixing "Provisioner already initialized" errors ([#4877](https://github.com/hashicorp/terraform/issues/4877))
   560    * core: Skip `create_before_destroy` processing during a `terraform destroy`, solving several issues preventing `destroy`
   561            from working properly with CBD resources ([#5096](https://github.com/hashicorp/terraform/issues/5096))
   562    * core: Error instead of panic on self var in wrong scope ([#5273](https://github.com/hashicorp/terraform/issues/5273))
   563    * provider/aws: Fix Copy of Tags to DB Instance when created from Snapshot ([#5197](https://github.com/hashicorp/terraform/issues/5197))
   564    * provider/aws: Fix DynamoDB Table Refresh to ensure deleted tables are removed from state ([#4943](https://github.com/hashicorp/terraform/issues/4943))
   565    * provider/aws: Fix ElasticSearch `domain_name` validation ([#4973](https://github.com/hashicorp/terraform/issues/4973))
   566    * provider/aws: Fix issue applying security group changes in EC2 Classic RDS for aws_db_instance ([#4969](https://github.com/hashicorp/terraform/issues/4969))
   567    * provider/aws: Fix reading auto scaling group availability zones ([#5044](https://github.com/hashicorp/terraform/issues/5044))
   568    * provider/aws: Fix reading auto scaling group load balancers ([#5045](https://github.com/hashicorp/terraform/issues/5045))
   569    * provider/aws: Fix `aws_redshift_cluster` to allow `publicly_accessible` to be false ([#5262](https://github.com/hashicorp/terraform/issues/5262))
   570    * provider/aws: Wait longer for internet gateways to detach ([#5120](https://github.com/hashicorp/terraform/issues/5120))
   571    * provider/aws: Fix issue reading auto scaling group termination policies ([#5101](https://github.com/hashicorp/terraform/issues/5101))
   572    * provider/cloudflare: `ttl` no longer shows a change on each plan on `cloudflare_record` resources ([#5042](https://github.com/hashicorp/terraform/issues/5042))
   573    * provider/docker: Fix the default docker_host value ([#5088](https://github.com/hashicorp/terraform/issues/5088))
   574    * provider/google: Fix backend service max_utilization attribute ([#5075](https://github.com/hashicorp/terraform/issues/5075))
   575    * provider/google: Fix reading of `google_compute_vpn_gateway` without an explicit ([#5125](https://github.com/hashicorp/terraform/issues/5125))
   576    * provider/google: Fix crash when setting `ack_deadline_seconds` on `google_pubsub_subscription` ([#5110](https://github.com/hashicorp/terraform/issues/5110))
   577    * provider/openstack: Fix crash when `access_network` was not defined in instances ([#4966](https://github.com/hashicorp/terraform/issues/4966))
   578    * provider/powerdns: Fix refresh of `powerdns_record` no longer fails if the record name contains a `-` ([#5228](https://github.com/hashicorp/terraform/issues/5228))
   579    * provider/vcd: Wait for DHCP assignment when creating `vcd_vapp` resources with no static IP assignment ([#5195](https://github.com/hashicorp/terraform/issues/5195))
   580  
   581  ## 0.6.11 (February 1, 2016)
   582  
   583  BACKWARDS INCOMPATIBILITIES / NOTES:
   584  
   585    * The `max_size`, `min_size` and `desired_capacity` attributes on `aws_autoscaling_schedule` resources now default to 0
   586  
   587  FEATURES:
   588  
   589    * **New provider: `powerdns` - PowerDNS REST API** ([#4885](https://github.com/hashicorp/terraform/issues/4885))
   590    * **New builtin function:** `trimspace` for trimming whitespaces ([#4910](https://github.com/hashicorp/terraform/issues/4910))
   591    * **New builtin function:** `base64sha256` for base64 encoding raw sha256 sum of a given string ([#4899](https://github.com/hashicorp/terraform/issues/4899))
   592    * **New resource:** `openstack_lb_member_v1` ([#4359](https://github.com/hashicorp/terraform/issues/4359))
   593  
   594  IMPROVEMENTS:
   595  
   596    * provider/template: Remove unnecessary mime-type validation from `template_cloudinit_config` resources ([#4873](https://github.com/hashicorp/terraform/issues/4873))
   597    * provider/template: Correct spelling of "Boundary" in the part separator of rendered `template_cloudinit_config` resources ([#4873](https://github.com/hashicorp/terraform/issues/4873))
   598    * provider/aws: Provide a better message if no AWS creds are found ([#4869](https://github.com/hashicorp/terraform/issues/4869))
   599    * provider/openstack: Ability to specify per-network Floating IPs ([#4812](https://github.com/hashicorp/terraform/issues/4812))
   600  
   601  BUG FIXES:
   602  
   603    * provider/aws: `aws_autoscale_schedule` 0 values ([#4693](https://github.com/hashicorp/terraform/issues/4693))
   604    * provider/aws: Fix regression with VPCs and ClassicLink for regions that do not support it ([#4879](https://github.com/hashicorp/terraform/issues/4879))
   605    * provider/aws: Change VPC ClassicLink to be computed ([#4933](https://github.com/hashicorp/terraform/issues/4933))
   606    * provider/aws: Fix SNS Topic Refresh to ensure deleted topics are removed from state ([#4891](https://github.com/hashicorp/terraform/issues/4891))
   607    * provider/aws: Refactor Route53 record to fix regression in deleting records created in previous versions of Terraform ([#4892](https://github.com/hashicorp/terraform/issues/4892))
   608    * provider/azurerm: Fix panic if no creds supplied ([#4902](https://github.com/hashicorp/terraform/issues/4902))
   609    * provider/openstack: Changing the port resource to mark the ip_address as optional ([#4850](https://github.com/hashicorp/terraform/issues/4850))
   610    * provider/docker: Catch potential custom network errors in docker ([#4918](https://github.com/hashicorp/terraform/issues/4918))
   611  
   612  
   613  
   614  ## 0.6.10 (January 27, 2016)
   615  
   616  BACKWARDS INCOMPATIBILITIES / NOTES:
   617  
   618    * The `-module-depth` flag available on `plan`, `apply`, `show`, and `graph` now defaults to `-1`, causing
   619      resources within modules to be expanded in command output. This is only a cosmetic change; it does not affect
   620      any behavior.
   621    * This release includes a bugfix for `$${}` interpolation escaping. These strings are now properly converted to `${}`
   622      during interpolation. This may cause diffs on existing configurations in certain cases.
   623    * 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.
   624    * 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.
   625    * Users of `aws_security_group` may notice new diffs in initial plans with 0.6.10 due to a bugfix that fixes drift detection on nested security group rules. These new diffs should reflect the actual state of the resources, which Terraform previously was unable to see.
   626  
   627  
   628  FEATURES:
   629  
   630    * **New resource: `aws_lambda_alias`** ([#4664](https://github.com/hashicorp/terraform/issues/4664))
   631    * **New resource: `aws_redshift_cluster`** ([#3862](https://github.com/hashicorp/terraform/issues/3862))
   632    * **New resource: `aws_redshift_parameter_group`** ([#3862](https://github.com/hashicorp/terraform/issues/3862))
   633    * **New resource: `aws_redshift_security_group`** ([#3862](https://github.com/hashicorp/terraform/issues/3862))
   634    * **New resource: `aws_redshift_subnet_group`** ([#3862](https://github.com/hashicorp/terraform/issues/3862))
   635    * **New resource: `azurerm_cdn_endpoint`** ([#4759](https://github.com/hashicorp/terraform/issues/4759))
   636    * **New resource: `azurerm_cdn_profile`** ([#4740](https://github.com/hashicorp/terraform/issues/4740))
   637    * **New resource: `azurerm_network_interface`** ([#4598](https://github.com/hashicorp/terraform/issues/4598))
   638    * **New resource: `azurerm_network_security_rule`** ([#4586](https://github.com/hashicorp/terraform/issues/4586))
   639    * **New resource: `azurerm_route_table`** ([#4602](https://github.com/hashicorp/terraform/issues/4602))
   640    * **New resource: `azurerm_route`** ([#4604](https://github.com/hashicorp/terraform/issues/4604))
   641    * **New resource: `azurerm_storage_account`** ([#4698](https://github.com/hashicorp/terraform/issues/4698))
   642    * **New resource: `azurerm_storage_blob`** ([#4862](https://github.com/hashicorp/terraform/issues/4862))
   643    * **New resource: `azurerm_storage_container`** ([#4862](https://github.com/hashicorp/terraform/issues/4862))
   644    * **New resource: `azurerm_storage_queue`** ([#4862](https://github.com/hashicorp/terraform/issues/4862))
   645    * **New resource: `azurerm_subnet`** ([#4595](https://github.com/hashicorp/terraform/issues/4595))
   646    * **New resource: `docker_network`** ([#4483](https://github.com/hashicorp/terraform/issues/4483))
   647    * **New resource: `docker_volume`** ([#4483](https://github.com/hashicorp/terraform/issues/4483))
   648    * **New resource: `google_sql_user`** ([#4669](https://github.com/hashicorp/terraform/issues/4669))
   649  
   650  IMPROVEMENTS:
   651  
   652    * core: Add `sha256()` interpolation function ([#4704](https://github.com/hashicorp/terraform/issues/4704))
   653    * core: Validate lifecycle keys to show helpful error messages whe they are mistypes ([#4745](https://github.com/hashicorp/terraform/issues/4745))
   654    * core: Default `module-depth` parameter to `-1`, which expands resources within modules in command output ([#4763](https://github.com/hashicorp/terraform/issues/4763))
   655    * core: Variable types may now be specified explicitly using the `type` argument ([#4795](https://github.com/hashicorp/terraform/issues/4795))
   656    * provider/aws: Add new parameters `az_mode` and `availability_zone(s)` in ElastiCache ([#4631](https://github.com/hashicorp/terraform/issues/4631))
   657    * provider/aws: Allow ap-northeast-2 (Seoul) as valid region ([#4637](https://github.com/hashicorp/terraform/issues/4637))
   658    * provider/aws: Limit SNS Topic Subscription protocols ([#4639](https://github.com/hashicorp/terraform/issues/4639))
   659    * provider/aws: Add support for configuring logging on `aws_s3_bucket` resources ([#4482](https://github.com/hashicorp/terraform/issues/4482))
   660    * provider/aws: Add AWS Classiclink for AWS VPC resource ([#3994](https://github.com/hashicorp/terraform/issues/3994))
   661    * provider/aws: Supporting New AWS Route53 HealthCheck additions ([#4564](https://github.com/hashicorp/terraform/issues/4564))
   662    * provider/aws: Store instance state ([#3261](https://github.com/hashicorp/terraform/issues/3261))
   663    * provider/aws: Add support for updating ELB availability zones and subnets ([#4597](https://github.com/hashicorp/terraform/issues/4597))
   664    * provider/aws: Enable specifying aws s3 redirect protocol ([#4098](https://github.com/hashicorp/terraform/issues/4098))
   665    * provider/aws: Added support for `encrypted` on `ebs_block_devices` in Launch Configurations ([#4481](https://github.com/hashicorp/terraform/issues/4481))
   666    * provider/aws: Retry Listener Creation for ELBs ([#4825](https://github.com/hashicorp/terraform/issues/4825))
   667    * provider/aws: Add support for creating Managed Microsoft Active Directory
   668      and Directory Connectors ([#4388](https://github.com/hashicorp/terraform/issues/4388))
   669    * provider/aws: Mark some `aws_db_instance` fields as optional ([#3138](https://github.com/hashicorp/terraform/issues/3138))
   670    * provider/digitalocean: Add support for reassigning `digitalocean_floating_ip` resources ([#4476](https://github.com/hashicorp/terraform/issues/4476))
   671    * provider/dme: Add support for Global Traffic Director locations on `dme_record` resources ([#4305](https://github.com/hashicorp/terraform/issues/4305))
   672    * provider/docker: Add support for adding host entries on `docker_container` resources ([#3463](https://github.com/hashicorp/terraform/issues/3463))
   673    * provider/docker: Add support for mounting named volumes on `docker_container` resources ([#4480](https://github.com/hashicorp/terraform/issues/4480))
   674    * provider/google: Add content field to bucket object ([#3893](https://github.com/hashicorp/terraform/issues/3893))
   675    * provider/google: Add support for  `named_port` blocks on `google_compute_instance_group_manager` resources ([#4605](https://github.com/hashicorp/terraform/issues/4605))
   676    * provider/openstack: Add "personality" support to instance resource ([#4623](https://github.com/hashicorp/terraform/issues/4623))
   677    * provider/packet: Handle external state changes for Packet resources gracefully ([#4676](https://github.com/hashicorp/terraform/issues/4676))
   678    * provider/tls: `tls_private_key` now exports attributes with public key in both PEM and OpenSSH format ([#4606](https://github.com/hashicorp/terraform/issues/4606))
   679    * provider/vdc: Add `allow_unverified_ssl` for connections to vCloud API ([#4811](https://github.com/hashicorp/terraform/issues/4811))
   680    * state/remote: Allow KMS Key Encryption to be used with S3 backend ([#2903](https://github.com/hashicorp/terraform/issues/2903))
   681  
   682  BUG FIXES:
   683  
   684    * core: Fix handling of literals with escaped interpolations `$${var}` ([#4747](https://github.com/hashicorp/terraform/issues/4747))
   685    * core: Fix diff mismatch when RequiresNew field and list both change ([#4749](https://github.com/hashicorp/terraform/issues/4749))
   686    * core: Respect module target path argument on `terraform init` ([#4753](https://github.com/hashicorp/terraform/issues/4753))
   687    * core: Write planfile even on empty plans ([#4766](https://github.com/hashicorp/terraform/issues/4766))
   688    * core: Add validation error when output is missing value field ([#4762](https://github.com/hashicorp/terraform/issues/4762))
   689    * core: Fix improper handling of orphan resources when targeting ([#4574](https://github.com/hashicorp/terraform/issues/4574))
   690    * core: Properly handle references to computed set attributes ([#4840](https://github.com/hashicorp/terraform/issues/4840))
   691    * config: Detect a specific JSON edge case and show a helpful workaround ([#4746](https://github.com/hashicorp/terraform/issues/4746))
   692    * provider/openstack: Ensure valid Security Group Rule attribute combination ([#4466](https://github.com/hashicorp/terraform/issues/4466))
   693    * provider/openstack: Don't put fixed_ip in port creation request if not defined ([#4617](https://github.com/hashicorp/terraform/issues/4617))
   694    * provider/google: Clarify SQL Database Instance recent name restriction ([#4577](https://github.com/hashicorp/terraform/issues/4577))
   695    * provider/google: Split Instance network interface into two fields ([#4265](https://github.com/hashicorp/terraform/issues/4265))
   696    * provider/aws: Error with empty list item on security group ([#4140](https://github.com/hashicorp/terraform/issues/4140))
   697    * provider/aws: Fix issue with detecting drift in AWS Security Groups rules ([#4779](https://github.com/hashicorp/terraform/issues/4779))
   698    * provider/aws: Trap Instance error from mismatched SG IDs and Names ([#4240](https://github.com/hashicorp/terraform/issues/4240))
   699    * provider/aws: EBS optimised to force new resource in AWS Instance ([#4627](https://github.com/hashicorp/terraform/issues/4627))
   700    * provider/aws: Wait for NACL rule to be visible ([#4734](https://github.com/hashicorp/terraform/issues/4734))
   701    * provider/aws: `default_result` on `aws_autoscaling_lifecycle_hook` resources is now computed ([#4695](https://github.com/hashicorp/terraform/issues/4695))
   702    * provider/aws: fix ASG capacity waiting regression by un-deprecating `min_elb_capacity` ([#4864](https://github.com/hashicorp/terraform/issues/4864))
   703    * provider/consul: fix several bugs surrounding update behavior ([#4787](https://github.com/hashicorp/terraform/issues/4787))
   704    * provider/mailgun: Handle the fact that the domain destroy API is eventually consistent ([#4777](https://github.com/hashicorp/terraform/issues/4777))
   705    * provider/template: Fix race causing sporadic crashes in template_file with count > 1 ([#4694](https://github.com/hashicorp/terraform/issues/4694))
   706    * provider/template: Add support for updating `template_cloudinit_config` resources ([#4757](https://github.com/hashicorp/terraform/issues/4757))
   707    * provisioner/chef: Add ENV['no_proxy'] to chef provisioner if no_proxy is detected ([#4661](https://github.com/hashicorp/terraform/issues/4661))
   708  
   709  ## 0.6.9 (January 8, 2016)
   710  
   711  FEATURES:
   712  
   713    * **New provider: `vcd` - VMware vCloud Director** ([#3785](https://github.com/hashicorp/terraform/issues/3785))
   714    * **New provider: `postgresql` - Create PostgreSQL databases and roles** ([#3653](https://github.com/hashicorp/terraform/issues/3653))
   715    * **New provider: `chef` - Create chef environments, roles, etc** ([#3084](https://github.com/hashicorp/terraform/issues/3084))
   716    * **New provider: `azurerm` - Preliminary support for Azure Resource Manager** ([#4226](https://github.com/hashicorp/terraform/issues/4226))
   717    * **New provider: `mysql` - Create MySQL databases** ([#3122](https://github.com/hashicorp/terraform/issues/3122))
   718    * **New resource: `aws_autoscaling_schedule`** ([#4256](https://github.com/hashicorp/terraform/issues/4256))
   719    * **New resource: `aws_nat_gateway`** ([#4381](https://github.com/hashicorp/terraform/issues/4381))
   720    * **New resource: `aws_network_acl_rule`** ([#4286](https://github.com/hashicorp/terraform/issues/4286))
   721    * **New resources: `aws_ecr_repository` and `aws_ecr_repository_policy`** ([#4415](https://github.com/hashicorp/terraform/issues/4415))
   722    * **New resource: `google_pubsub_topic`** ([#3671](https://github.com/hashicorp/terraform/issues/3671))
   723    * **New resource: `google_pubsub_subscription`** ([#3671](https://github.com/hashicorp/terraform/issues/3671))
   724    * **New resource: `template_cloudinit_config`** ([#4095](https://github.com/hashicorp/terraform/issues/4095))
   725    * **New resource: `tls_locally_signed_cert`** ([#3930](https://github.com/hashicorp/terraform/issues/3930))
   726    * **New remote state backend: `artifactory`** ([#3684](https://github.com/hashicorp/terraform/issues/3684))
   727  
   728  IMPROVEMENTS:
   729  
   730    * core: Change set internals for performance improvements ([#3992](https://github.com/hashicorp/terraform/issues/3992))
   731    * core: Support HTTP basic auth in consul remote state ([#4166](https://github.com/hashicorp/terraform/issues/4166))
   732    * core: Improve error message on resource arity mismatch ([#4244](https://github.com/hashicorp/terraform/issues/4244))
   733    * core: Add support for unary operators + and - to the interpolation syntax ([#3621](https://github.com/hashicorp/terraform/issues/3621))
   734    * core: Add SSH agent support for Windows ([#4323](https://github.com/hashicorp/terraform/issues/4323))
   735    * core: Add `sha1()` interpolation function ([#4450](https://github.com/hashicorp/terraform/issues/4450))
   736    * provider/aws: Add `placement_group` as an option for `aws_autoscaling_group` ([#3704](https://github.com/hashicorp/terraform/issues/3704))
   737    * provider/aws: Add support for DynamoDB Table StreamSpecifications ([#4208](https://github.com/hashicorp/terraform/issues/4208))
   738    * provider/aws: Add `name_prefix` to Security Groups ([#4167](https://github.com/hashicorp/terraform/issues/4167))
   739    * provider/aws: Add support for removing nodes to `aws_elasticache_cluster` ([#3809](https://github.com/hashicorp/terraform/issues/3809))
   740    * provider/aws: Add support for `skip_final_snapshot` to `aws_db_instance` ([#3853](https://github.com/hashicorp/terraform/issues/3853))
   741    * provider/aws: Adding support for Tags to DB SecurityGroup ([#4260](https://github.com/hashicorp/terraform/issues/4260))
   742    * provider/aws: Adding Tag support for DB Param Groups ([#4259](https://github.com/hashicorp/terraform/issues/4259))
   743    * provider/aws: Fix issue with updated route ids for VPC Endpoints ([#4264](https://github.com/hashicorp/terraform/issues/4264))
   744    * provider/aws: Added measure_latency option to Route 53 Health Check resource ([#3688](https://github.com/hashicorp/terraform/issues/3688))
   745    * provider/aws: Validate IOPs for EBS Volumes ([#4146](https://github.com/hashicorp/terraform/issues/4146))
   746    * provider/aws: DB Subnet group arn output ([#4261](https://github.com/hashicorp/terraform/issues/4261))
   747    * provider/aws: Get full Kinesis streams view with pagination ([#4368](https://github.com/hashicorp/terraform/issues/4368))
   748    * provider/aws: Allow changing private IPs for ENIs ([#4307](https://github.com/hashicorp/terraform/issues/4307))
   749    * provider/aws: Retry MalformedPolicy errors due to newly created principals in S3 Buckets ([#4315](https://github.com/hashicorp/terraform/issues/4315))
   750    * provider/aws: Validate `name` on `db_subnet_group` against AWS requirements ([#4340](https://github.com/hashicorp/terraform/issues/4340))
   751    * provider/aws: wait for ASG capacity on update ([#3947](https://github.com/hashicorp/terraform/issues/3947))
   752    * provider/aws: Add validation for ECR repository name ([#4431](https://github.com/hashicorp/terraform/issues/4431))
   753    * provider/cloudstack: performance improvements ([#4150](https://github.com/hashicorp/terraform/issues/4150))
   754    * provider/docker: Add support for setting the entry point on `docker_container` resources ([#3761](https://github.com/hashicorp/terraform/issues/3761))
   755    * provider/docker: Add support for setting the restart policy on `docker_container` resources ([#3761](https://github.com/hashicorp/terraform/issues/3761))
   756    * provider/docker: Add support for setting memory, swap and CPU shares on `docker_container` resources ([#3761](https://github.com/hashicorp/terraform/issues/3761))
   757    * provider/docker: Add support for setting labels on `docker_container` resources ([#3761](https://github.com/hashicorp/terraform/issues/3761))
   758    * provider/docker: Add support for setting log driver and options on `docker_container` resources ([#3761](https://github.com/hashicorp/terraform/issues/3761))
   759    * provider/docker: Add support for settings network mode on `docker_container` resources ([#4475](https://github.com/hashicorp/terraform/issues/4475))
   760    * provider/heroku: Improve handling of Applications within an Organization ([#4495](https://github.com/hashicorp/terraform/issues/4495))
   761    * provider/vsphere: Add support for custom vm params on `vsphere_virtual_machine` ([#3867](https://github.com/hashicorp/terraform/issues/3867))
   762    * provider/vsphere: Rename vcenter_server config parameter to something clearer ([#3718](https://github.com/hashicorp/terraform/issues/3718))
   763    * provider/vsphere: Make allow_unverified_ssl a configuable on the provider ([#3933](https://github.com/hashicorp/terraform/issues/3933))
   764    * provider/vsphere: Add folder handling for folder-qualified vm names ([#3939](https://github.com/hashicorp/terraform/issues/3939))
   765    * provider/vsphere: Change ip_address parameter for ipv6 support ([#4035](https://github.com/hashicorp/terraform/issues/4035))
   766    * provider/openstack: Increase instance timeout from 10 to 30 minutes ([#4223](https://github.com/hashicorp/terraform/issues/4223))
   767    * provider/google: Add `restart_policy` attribute to `google_managed_instance_group` ([#3892](https://github.com/hashicorp/terraform/issues/3892))
   768  
   769  BUG FIXES:
   770  
   771    * core: skip provider input for deprecated fields ([#4193](https://github.com/hashicorp/terraform/issues/4193))
   772    * core: Fix issue which could cause fields that become empty to retain old values in the state ([#3257](https://github.com/hashicorp/terraform/issues/3257))
   773    * provider/docker: Fix an issue running with Docker Swarm by looking up containers by ID instead of name ([#4148](https://github.com/hashicorp/terraform/issues/4148))
   774    * provider/openstack: Better handling of load balancing resource state changes ([#3926](https://github.com/hashicorp/terraform/issues/3926))
   775    * provider/aws: Treat `INACTIVE` ECS cluster as deleted ([#4364](https://github.com/hashicorp/terraform/issues/4364))
   776    * provider/aws: Skip `source_security_group_id` determination logic for Classic ELBs ([#4075](https://github.com/hashicorp/terraform/issues/4075))
   777    * provider/aws: Fix issue destroy Route 53 zone/record if it no longer exists ([#4198](https://github.com/hashicorp/terraform/issues/4198))
   778    * provider/aws: Fix issue force destroying a versioned S3 bucket ([#4168](https://github.com/hashicorp/terraform/issues/4168))
   779    * provider/aws: Update DB Replica to honor storage type ([#4155](https://github.com/hashicorp/terraform/issues/4155))
   780    * provider/aws: Fix issue creating AWS RDS replicas across regions ([#4215](https://github.com/hashicorp/terraform/issues/4215))
   781    * provider/aws: Fix issue with Route53 and zero weighted records ([#4427](https://github.com/hashicorp/terraform/issues/4427))
   782    * provider/aws: Fix issue with iam_profile in aws_instance when a path is specified ([#3663](https://github.com/hashicorp/terraform/issues/3663))
   783    * provider/aws: Refactor AWS Authentication chain to fix issue with authentication and IAM ([#4254](https://github.com/hashicorp/terraform/issues/4254))
   784    * provider/aws: Fix issue with finding S3 Hosted Zone ID for eu-central-1 region ([#4236](https://github.com/hashicorp/terraform/issues/4236))
   785    * provider/aws: Fix missing AMI issue with Launch Configurations ([#4242](https://github.com/hashicorp/terraform/issues/4242))
   786    * provider/aws: Opsworks stack SSH key is write-only ([#4241](https://github.com/hashicorp/terraform/issues/4241))
   787    * provider/aws: Update VPC Endpoint to correctly set route table ids ([#4392](https://github.com/hashicorp/terraform/issues/4392))
   788    * provider/aws: Fix issue with ElasticSearch Domain `access_policies` always appear changed ([#4245](https://github.com/hashicorp/terraform/issues/4245))
   789    * provider/aws: Fix issue with nil parameter group value causing panic in `aws_db_parameter_group` ([#4318](https://github.com/hashicorp/terraform/issues/4318))
   790    * provider/aws: Fix issue with Elastic IPs not recognizing when they have been unassigned manually ([#4387](https://github.com/hashicorp/terraform/issues/4387))
   791    * provider/aws: Use body or URL for all CloudFormation stack updates ([#4370](https://github.com/hashicorp/terraform/issues/4370))
   792    * provider/aws: Fix template_url/template_body conflict ([#4540](https://github.com/hashicorp/terraform/issues/4540))
   793    * provider/aws: Fix bug w/ changing ECS svc/ELB association ([#4366](https://github.com/hashicorp/terraform/issues/4366))
   794    * provider/aws: Fix RDS unexpected state config ([#4490](https://github.com/hashicorp/terraform/issues/4490))
   795    * provider/digitalocean: Fix issue where a floating IP attached to a missing droplet causes a panic ([#4214](https://github.com/hashicorp/terraform/issues/4214))
   796    * provider/google: Fix project metadata sshKeys from showing up and causing unnecessary diffs ([#4512](https://github.com/hashicorp/terraform/issues/4512))
   797    * provider/heroku: Retry drain create until log channel is assigned ([#4823](https://github.com/hashicorp/terraform/issues/4823))
   798    * provider/openstack: Handle volumes in "deleting" state ([#4204](https://github.com/hashicorp/terraform/issues/4204))
   799    * provider/rundeck: Tolerate Rundeck server not returning project name when reading a job ([#4301](https://github.com/hashicorp/terraform/issues/4301))
   800    * provider/vsphere: Create and attach additional disks before bootup ([#4196](https://github.com/hashicorp/terraform/issues/4196))
   801    * provider/openstack: Convert block_device from a Set to a List ([#4288](https://github.com/hashicorp/terraform/issues/4288))
   802    * provider/google: Terraform identifies deleted resources and handles them appropriately on Read ([#3913](https://github.com/hashicorp/terraform/issues/3913))
   803  
   804  ## 0.6.8 (December 2, 2015)
   805  
   806  FEATURES:
   807  
   808    * **New provider: `statuscake`** ([#3340](https://github.com/hashicorp/terraform/issues/3340))
   809    * **New resource: `digitalocean_floating_ip`** ([#3748](https://github.com/hashicorp/terraform/issues/3748))
   810    * **New resource: `aws_lambda_event_source_mapping`** ([#4093](https://github.com/hashicorp/terraform/issues/4093))
   811  
   812  IMPROVEMENTS:
   813  
   814    * provider/cloudstack: Reduce the number of network calls required for common operations ([#4051](https://github.com/hashicorp/terraform/issues/4051))
   815    * provider/aws: Make `publically_accessible` on an `aws_db_instance` update existing instances instead of forcing new ones ([#3895](https://github.com/hashicorp/terraform/issues/3895))
   816    * provider/aws: Allow `block_duration_minutes` to be set for spot instance requests ([#4071](https://github.com/hashicorp/terraform/issues/4071))
   817    * provider/aws: Make setting `acl` on S3 buckets update existing buckets instead of forcing new ones ([#4080](https://github.com/hashicorp/terraform/issues/4080))
   818    * provider/aws: Make updates to `assume_role_policy` modify existing IAM roles instead of forcing new ones ([#4107](https://github.com/hashicorp/terraform/issues/4107))
   819  
   820  BUG FIXES:
   821  
   822    * core: Fix a bug which prevented HEREDOC syntax being used in lists ([#4078](https://github.com/hashicorp/terraform/issues/4078))
   823    * core: Fix a bug which prevented HEREDOC syntax where the anchor ends in a number ([#4128](https://github.com/hashicorp/terraform/issues/4128))
   824    * core: Fix a bug which prevented HEREDOC syntax being used with Windows line endings ([#4069](https://github.com/hashicorp/terraform/issues/4069))
   825    * provider/aws: Fix a bug which could result in a panic when reading EC2 metadata ([#4024](https://github.com/hashicorp/terraform/issues/4024))
   826    * provider/aws: Fix issue recreating security group rule if it has been destroyed ([#4050](https://github.com/hashicorp/terraform/issues/4050))
   827    * provider/aws: Fix issue with some attributes in Spot Instance Requests returning as nil ([#4132](https://github.com/hashicorp/terraform/issues/4132))
   828    * provider/aws: Fix issue where SPF records in Route 53 could show differences with no modification to the configuration ([#4108](https://github.com/hashicorp/terraform/issues/4108))
   829    * provisioner/chef: Fix issue with path separators breaking the Chef provisioner on Windows ([#4041](https://github.com/hashicorp/terraform/issues/4041))
   830  
   831  ## 0.6.7 (November 23, 2015)
   832  
   833  FEATURES:
   834  
   835    * **New provider: `tls`** - A utility provider for generating TLS keys/self-signed certificates for development and testing ([#2778](https://github.com/hashicorp/terraform/issues/2778))
   836    * **New provider: `dyn`** - Manage DNS records on Dyn
   837    * **New resource: `aws_cloudformation_stack`** ([#2636](https://github.com/hashicorp/terraform/issues/2636))
   838    * **New resource: `aws_cloudtrail`** ([#3094](https://github.com/hashicorp/terraform/issues/3094)), ([#4010](https://github.com/hashicorp/terraform/issues/4010))
   839    * **New resource: `aws_route`** ([#3548](https://github.com/hashicorp/terraform/issues/3548))
   840    * **New resource: `aws_codecommit_repository`** ([#3274](https://github.com/hashicorp/terraform/issues/3274))
   841    * **New resource: `aws_kinesis_firehose_delivery_stream`** ([#3833](https://github.com/hashicorp/terraform/issues/3833))
   842    * **New resource: `google_sql_database` and `google_sql_database_instance`** ([#3617](https://github.com/hashicorp/terraform/issues/3617))
   843    * **New resource: `google_compute_global_address`** ([#3701](https://github.com/hashicorp/terraform/issues/3701))
   844    * **New resource: `google_compute_https_health_check`** ([#3883](https://github.com/hashicorp/terraform/issues/3883))
   845    * **New resource: `google_compute_ssl_certificate`** ([#3723](https://github.com/hashicorp/terraform/issues/3723))
   846    * **New resource: `google_compute_url_map`** ([#3722](https://github.com/hashicorp/terraform/issues/3722))
   847    * **New resource: `google_compute_target_http_proxy`** ([#3727](https://github.com/hashicorp/terraform/issues/3727))
   848    * **New resource: `google_compute_target_https_proxy`** ([#3728](https://github.com/hashicorp/terraform/issues/3728))
   849    * **New resource: `google_compute_global_forwarding_rule`** ([#3702](https://github.com/hashicorp/terraform/issues/3702))
   850    * **New resource: `openstack_networking_port_v2`** ([#3731](https://github.com/hashicorp/terraform/issues/3731))
   851    * New interpolation function: `coalesce` ([#3814](https://github.com/hashicorp/terraform/issues/3814))
   852  
   853  IMPROVEMENTS:
   854  
   855    * core: Improve message to list only resources which will be destroyed when using `--target` ([#3859](https://github.com/hashicorp/terraform/issues/3859))
   856    * connection/ssh: Accept `private_key` contents instead of paths ([#3846](https://github.com/hashicorp/terraform/issues/3846))
   857    * provider/google: `preemptible` option for instance_template ([#3667](https://github.com/hashicorp/terraform/issues/3667))
   858    * provider/google: Accurate Terraform Version ([#3554](https://github.com/hashicorp/terraform/issues/3554))
   859    * provider/google: Simplified auth (DefaultClient support) ([#3553](https://github.com/hashicorp/terraform/issues/3553))
   860    * provider/google: `automatic_restart`, `preemptible`, `on_host_maintenance` options ([#3643](https://github.com/hashicorp/terraform/issues/3643))
   861    * provider/google: Read credentials as contents instead of path ([#3901](https://github.com/hashicorp/terraform/issues/3901))
   862    * null_resource: Enhance and document [GH-3244, GH-3659]
   863    * provider/aws: Add CORS settings to S3 bucket ([#3387](https://github.com/hashicorp/terraform/issues/3387))
   864    * provider/aws: Add notification topic ARN for ElastiCache clusters ([#3674](https://github.com/hashicorp/terraform/issues/3674))
   865    * provider/aws: Add `kinesis_endpoint` for configuring Kinesis ([#3255](https://github.com/hashicorp/terraform/issues/3255))
   866    * provider/aws: Add a computed ARN for S3 Buckets ([#3685](https://github.com/hashicorp/terraform/issues/3685))
   867    * provider/aws: Add S3 support for Lambda Function resource ([#3794](https://github.com/hashicorp/terraform/issues/3794))
   868    * provider/aws: Add `name_prefix` option to launch configurations ([#3802](https://github.com/hashicorp/terraform/issues/3802))
   869    * provider/aws: Add support for group name and path changes with IAM group update function ([#3237](https://github.com/hashicorp/terraform/issues/3237))
   870    * provider/aws: Provide `source_security_group_id` for ELBs inside a VPC ([#3780](https://github.com/hashicorp/terraform/issues/3780))
   871    * provider/aws: Add snapshot window and retention limits for ElastiCache (Redis) ([#3707](https://github.com/hashicorp/terraform/issues/3707))
   872    * provider/aws: Add username updates for `aws_iam_user` ([#3227](https://github.com/hashicorp/terraform/issues/3227))
   873    * provider/aws: Add AutoMinorVersionUpgrade to RDS Instances ([#3677](https://github.com/hashicorp/terraform/issues/3677))
   874    * provider/aws: Add `access_logs` to ELB resource ([#3756](https://github.com/hashicorp/terraform/issues/3756))
   875    * provider/aws: Add a retry function to rescue an error in creating Autoscaling Lifecycle Hooks ([#3694](https://github.com/hashicorp/terraform/issues/3694))
   876    * provider/aws: `engine_version` is now optional for DB Instance ([#3744](https://github.com/hashicorp/terraform/issues/3744))
   877    * provider/aws: Add configuration to enable copying RDS tags to final snapshot ([#3529](https://github.com/hashicorp/terraform/issues/3529))
   878    * provider/aws: RDS Cluster additions (`backup_retention_period`, `preferred_backup_window`, `preferred_maintenance_window`) ([#3757](https://github.com/hashicorp/terraform/issues/3757))
   879    * provider/aws: Document and validate ELB `ssl_certificate_id` and protocol requirements ([#3887](https://github.com/hashicorp/terraform/issues/3887))
   880    * provider/azure: Read `publish_settings` as contents instead of path ([#3899](https://github.com/hashicorp/terraform/issues/3899))
   881    * provider/openstack: Use IPv4 as the default IP version for subnets ([#3091](https://github.com/hashicorp/terraform/issues/3091))
   882    * provider/aws: Apply security group after restoring `db_instance` from snapshot ([#3513](https://github.com/hashicorp/terraform/issues/3513))
   883    * provider/aws: Make the AutoScalingGroup `name` optional ([#3710](https://github.com/hashicorp/terraform/issues/3710))
   884    * provider/openstack: Add "delete on termination" boot-from-volume option ([#3232](https://github.com/hashicorp/terraform/issues/3232))
   885    * provider/digitalocean: Make `user_data` force a new droplet ([#3740](https://github.com/hashicorp/terraform/issues/3740))
   886    * provider/vsphere: Do not add network interfaces by default ([#3652](https://github.com/hashicorp/terraform/issues/3652))
   887    * provider/openstack: Configure Fixed IPs through ports ([#3772](https://github.com/hashicorp/terraform/issues/3772))
   888    * provider/openstack: Specify a port ID on a Router Interface ([#3903](https://github.com/hashicorp/terraform/issues/3903))
   889    * provider/openstack: Make LBaaS Virtual IP computed ([#3927](https://github.com/hashicorp/terraform/issues/3927))
   890  
   891  BUG FIXES:
   892  
   893    * `terraform remote config`: update `--help` output ([#3632](https://github.com/hashicorp/terraform/issues/3632))
   894    * core: Modules on Git branches now update properly ([#1568](https://github.com/hashicorp/terraform/issues/1568))
   895    * core: Fix issue preventing input prompts for unset variables during plan ([#3843](https://github.com/hashicorp/terraform/issues/3843))
   896    * core: Fix issue preventing input prompts for unset variables during refresh ([#4017](https://github.com/hashicorp/terraform/issues/4017))
   897    * core: Orphan resources can now be targets ([#3912](https://github.com/hashicorp/terraform/issues/3912))
   898    * helper/schema: Skip StateFunc when value is nil ([#4002](https://github.com/hashicorp/terraform/issues/4002))
   899    * provider/google: Timeout when deleting large `instance_group_manager` ([#3591](https://github.com/hashicorp/terraform/issues/3591))
   900    * provider/aws: Fix issue with order of Termination Policies in AutoScaling Groups.
   901        This will introduce plans on upgrade to this version, in order to correct the ordering ([#2890](https://github.com/hashicorp/terraform/issues/2890))
   902    * provider/aws: Allow cluster name, not only ARN for `aws_ecs_service` ([#3668](https://github.com/hashicorp/terraform/issues/3668))
   903    * provider/aws: Fix a bug where a non-lower-cased `maintenance_window` can cause unnecessary planned changes ([#4020](https://github.com/hashicorp/terraform/issues/4020))
   904    * provider/aws: Only set `weight` on an `aws_route53_record` if it has been set in configuration ([#3900](https://github.com/hashicorp/terraform/issues/3900))
   905    * provider/aws: Ignore association not existing on route table destroy ([#3615](https://github.com/hashicorp/terraform/issues/3615))
   906    * provider/aws: Fix policy encoding issue with SNS Topics ([#3700](https://github.com/hashicorp/terraform/issues/3700))
   907    * provider/aws: Correctly export ARN in `aws_iam_saml_provider` ([#3827](https://github.com/hashicorp/terraform/issues/3827))
   908    * provider/aws: Fix issue deleting users who are attached to a group ([#4005](https://github.com/hashicorp/terraform/issues/4005))
   909    * provider/aws: Fix crash in Route53 Record if Zone not found ([#3945](https://github.com/hashicorp/terraform/issues/3945))
   910    * provider/aws: Retry deleting IAM Server Cert on dependency violation ([#3898](https://github.com/hashicorp/terraform/issues/3898))
   911    * provider/aws: Update Spot Instance request to provide connection information ([#3940](https://github.com/hashicorp/terraform/issues/3940))
   912    * provider/aws: Fix typo in error checking for IAM Policy Attachments ([#3970](https://github.com/hashicorp/terraform/issues/3970))
   913    * provider/aws: Fix issue with LB Cookie Stickiness and empty expiration period ([#3908](https://github.com/hashicorp/terraform/issues/3908))
   914    * provider/aws: Tolerate ElastiCache clusters being deleted outside Terraform ([#3767](https://github.com/hashicorp/terraform/issues/3767))
   915    * provider/aws: Downcase Route 53 record names in state file to match API output ([#3574](https://github.com/hashicorp/terraform/issues/3574))
   916    * provider/aws: Fix issue that could occur if no ECS Cluster was found for a given name ([#3829](https://github.com/hashicorp/terraform/issues/3829))
   917    * provider/aws: Fix issue with SNS topic policy if omitted ([#3777](https://github.com/hashicorp/terraform/issues/3777))
   918    * provider/aws: Support scratch volumes in `aws_ecs_task_definition` ([#3810](https://github.com/hashicorp/terraform/issues/3810))
   919    * provider/aws: Treat `aws_ecs_service` w/ Status==INACTIVE as deleted ([#3828](https://github.com/hashicorp/terraform/issues/3828))
   920    * provider/aws: Expand ~ to homedir in `aws_s3_bucket_object.source` ([#3910](https://github.com/hashicorp/terraform/issues/3910))
   921    * provider/aws: Fix issue with updating the `aws_ecs_task_definition` where `aws_ecs_service` didn't wait for a new computed ARN ([#3924](https://github.com/hashicorp/terraform/issues/3924))
   922    * provider/aws: Prevent crashing when deleting `aws_ecs_service` that is already gone ([#3914](https://github.com/hashicorp/terraform/issues/3914))
   923    * provider/aws: Allow spaces in `aws_db_subnet_group.name` (undocumented in the API) ([#3955](https://github.com/hashicorp/terraform/issues/3955))
   924    * provider/aws: Make VPC ID required on subnets ([#4021](https://github.com/hashicorp/terraform/issues/4021))
   925    * provider/azure: Various bug fixes ([#3695](https://github.com/hashicorp/terraform/issues/3695))
   926    * provider/digitalocean: Fix issue preventing SSH fingerprints from working ([#3633](https://github.com/hashicorp/terraform/issues/3633))
   927    * provider/digitalocean: Fix the DigitalOcean Droplet 404 potential on refresh of state ([#3768](https://github.com/hashicorp/terraform/issues/3768))
   928    * provider/openstack: Fix several issues causing unresolvable diffs ([#3440](https://github.com/hashicorp/terraform/issues/3440))
   929    * provider/openstack: Safely delete security groups ([#3696](https://github.com/hashicorp/terraform/issues/3696))
   930    * provider/openstack: Ignore order of `security_groups` in instance ([#3651](https://github.com/hashicorp/terraform/issues/3651))
   931    * provider/vsphere: Fix d.SetConnInfo error in case of a missing IP address ([#3636](https://github.com/hashicorp/terraform/issues/3636))
   932    * provider/openstack: Fix boot from volume ([#3206](https://github.com/hashicorp/terraform/issues/3206))
   933    * provider/openstack: Fix crashing when image is no longer accessible ([#2189](https://github.com/hashicorp/terraform/issues/2189))
   934    * provider/openstack: Better handling of network resource state changes ([#3712](https://github.com/hashicorp/terraform/issues/3712))
   935    * provider/openstack: Fix crashing when no security group is specified ([#3801](https://github.com/hashicorp/terraform/issues/3801))
   936    * provider/packet: Fix issue that could cause errors when provisioning many devices at once ([#3847](https://github.com/hashicorp/terraform/issues/3847))
   937    * provider/packet: Fix connection information for devices, allowing provisioners to run ([#3948](https://github.com/hashicorp/terraform/issues/3948))
   938    * provider/openstack: Fix issue preventing security group rules from being removed ([#3796](https://github.com/hashicorp/terraform/issues/3796))
   939    * provider/template: `template_file`: source contents instead of path ([#3909](https://github.com/hashicorp/terraform/issues/3909))
   940  
   941  ## 0.6.6 (October 23, 2015)
   942  
   943  FEATURES:
   944  
   945    * New interpolation functions: `cidrhost`, `cidrnetmask` and `cidrsubnet` ([#3127](https://github.com/hashicorp/terraform/issues/3127))
   946  
   947  IMPROVEMENTS:
   948  
   949    * "forces new resource" now highlighted in plan output ([#3136](https://github.com/hashicorp/terraform/issues/3136))
   950  
   951  BUG FIXES:
   952  
   953    * helper/schema: Better error message for assigning list/map to string ([#3009](https://github.com/hashicorp/terraform/issues/3009))
   954    * remote/state/atlas: Additional remote state conflict handling for semantically neutral state changes ([#3603](https://github.com/hashicorp/terraform/issues/3603))
   955  
   956  ## 0.6.5 (October 21, 2015)
   957  
   958  FEATURES:
   959  
   960    * **New resources: `aws_codeploy_app` and `aws_codeploy_deployment_group`** ([#2783](https://github.com/hashicorp/terraform/issues/2783))
   961    * New remote state backend: `etcd` ([#3487](https://github.com/hashicorp/terraform/issues/3487))
   962    * New interpolation functions: `upper` and `lower` ([#3558](https://github.com/hashicorp/terraform/issues/3558))
   963  
   964  BUG FIXES:
   965  
   966    * core: Fix remote state conflicts caused by ambiguity in ordering of deeply nested modules ([#3573](https://github.com/hashicorp/terraform/issues/3573))
   967    * core: Fix remote state conflicts caused by state metadata differences ([#3569](https://github.com/hashicorp/terraform/issues/3569))
   968    * core: Avoid using http.DefaultClient ([#3532](https://github.com/hashicorp/terraform/issues/3532))
   969  
   970  INTERNAL IMPROVEMENTS:
   971  
   972    * provider/digitalocean: use official Go client ([#3333](https://github.com/hashicorp/terraform/issues/3333))
   973    * core: extract module fetching to external library ([#3516](https://github.com/hashicorp/terraform/issues/3516))
   974  
   975  ## 0.6.4 (October 15, 2015)
   976  
   977  FEATURES:
   978  
   979    * **New provider: `rundeck`** ([#2412](https://github.com/hashicorp/terraform/issues/2412))
   980    * **New provider: `packet`** ([#2260](https://github.com/hashicorp/terraform/issues/2260)), ([#3472](https://github.com/hashicorp/terraform/issues/3472))
   981    * **New provider: `vsphere`**: Initial support for a VM resource ([#3419](https://github.com/hashicorp/terraform/issues/3419))
   982    * **New resource: `cloudstack_loadbalancer_rule`** ([#2934](https://github.com/hashicorp/terraform/issues/2934))
   983    * **New resource: `google_compute_project_metadata`** ([#3065](https://github.com/hashicorp/terraform/issues/3065))
   984    * **New resources: `aws_ami`, `aws_ami_copy`, `aws_ami_from_instance`** ([#2784](https://github.com/hashicorp/terraform/issues/2784))
   985    * **New resources: `aws_cloudwatch_log_group`** ([#2415](https://github.com/hashicorp/terraform/issues/2415))
   986    * **New resource: `google_storage_bucket_object`** ([#3192](https://github.com/hashicorp/terraform/issues/3192))
   987    * **New resources: `google_compute_vpn_gateway`, `google_compute_vpn_tunnel`** ([#3213](https://github.com/hashicorp/terraform/issues/3213))
   988    * **New resources: `google_storage_bucket_acl`, `google_storage_object_acl`** ([#3272](https://github.com/hashicorp/terraform/issues/3272))
   989    * **New resource: `aws_iam_saml_provider`** ([#3156](https://github.com/hashicorp/terraform/issues/3156))
   990    * **New resources: `aws_efs_file_system` and `aws_efs_mount_target`** ([#2196](https://github.com/hashicorp/terraform/issues/2196))
   991    * **New resources: `aws_opsworks_*`** ([#2162](https://github.com/hashicorp/terraform/issues/2162))
   992    * **New resource: `aws_elasticsearch_domain`** ([#3443](https://github.com/hashicorp/terraform/issues/3443))
   993    * **New resource: `aws_directory_service_directory`** ([#3228](https://github.com/hashicorp/terraform/issues/3228))
   994    * **New resource: `aws_autoscaling_lifecycle_hook`** ([#3351](https://github.com/hashicorp/terraform/issues/3351))
   995    * **New resource: `aws_placement_group`** ([#3457](https://github.com/hashicorp/terraform/issues/3457))
   996    * **New resource: `aws_glacier_vault`** ([#3491](https://github.com/hashicorp/terraform/issues/3491))
   997    * **New lifecycle flag: `ignore_changes`** ([#2525](https://github.com/hashicorp/terraform/issues/2525))
   998  
   999  IMPROVEMENTS:
  1000  
  1001    * core: Add a function to find the index of an element in a list. ([#2704](https://github.com/hashicorp/terraform/issues/2704))
  1002    * core: Print all outputs when `terraform output` is called with no arguments ([#2920](https://github.com/hashicorp/terraform/issues/2920))
  1003    * core: In plan output summary, count resource replacement as Add/Remove instead of Change ([#3173](https://github.com/hashicorp/terraform/issues/3173))
  1004    * core: Add interpolation functions for base64 encoding and decoding. ([#3325](https://github.com/hashicorp/terraform/issues/3325))
  1005    * core: Expose parallelism as a CLI option instead of a hard-coding the default of 10 ([#3365](https://github.com/hashicorp/terraform/issues/3365))
  1006    * core: Add interpolation function `compact`, to remove empty elements from a list. ([#3239](https://github.com/hashicorp/terraform/issues/3239)), ([#3479](https://github.com/hashicorp/terraform/issues/3479))
  1007    * core: Allow filtering of log output by level, using e.g. ``TF_LOG=INFO`` ([#3380](https://github.com/hashicorp/terraform/issues/3380))
  1008    * provider/aws: Add `instance_initiated_shutdown_behavior` to AWS Instance ([#2887](https://github.com/hashicorp/terraform/issues/2887))
  1009    * provider/aws: Support IAM role names (previously just ARNs) in `aws_ecs_service.iam_role` ([#3061](https://github.com/hashicorp/terraform/issues/3061))
  1010    * provider/aws: Add update method to RDS Subnet groups, can modify subnets without recreating  ([#3053](https://github.com/hashicorp/terraform/issues/3053))
  1011    * provider/aws: Paginate notifications returned for ASG Notifications ([#3043](https://github.com/hashicorp/terraform/issues/3043))
  1012    * provider/aws: Adds additional S3 Bucket Object inputs ([#3265](https://github.com/hashicorp/terraform/issues/3265))
  1013    * provider/aws: add `ses_smtp_password` to `aws_iam_access_key` ([#3165](https://github.com/hashicorp/terraform/issues/3165))
  1014    * provider/aws: read `iam_instance_profile` for `aws_instance` and save to state ([#3167](https://github.com/hashicorp/terraform/issues/3167))
  1015    * provider/aws: allow `instance` to be computed in `aws_eip` ([#3036](https://github.com/hashicorp/terraform/issues/3036))
  1016    * provider/aws: Add `versioning` option to `aws_s3_bucket` ([#2942](https://github.com/hashicorp/terraform/issues/2942))
  1017    * provider/aws: Add `configuation_endpoint` to `aws_elasticache_cluster` ([#3250](https://github.com/hashicorp/terraform/issues/3250))
  1018    * provider/aws: Add validation for `app_cookie_stickiness_policy.name` ([#3277](https://github.com/hashicorp/terraform/issues/3277))
  1019    * provider/aws: Add validation for `db_parameter_group.name` ([#3279](https://github.com/hashicorp/terraform/issues/3279))
  1020    * provider/aws: Set DynamoDB Table ARN after creation ([#3500](https://github.com/hashicorp/terraform/issues/3500))
  1021    * provider/aws: `aws_s3_bucket_object` allows interpolated content to be set with new `content` attribute. ([#3200](https://github.com/hashicorp/terraform/issues/3200))
  1022    * provider/aws: Allow tags for `aws_kinesis_stream` resource. ([#3397](https://github.com/hashicorp/terraform/issues/3397))
  1023    * provider/aws: Configurable capacity waiting duration for ASGs ([#3191](https://github.com/hashicorp/terraform/issues/3191))
  1024    * provider/aws: Allow non-persistent Spot Requests ([#3311](https://github.com/hashicorp/terraform/issues/3311))
  1025    * provider/aws: Support tags for AWS DB subnet group ([#3138](https://github.com/hashicorp/terraform/issues/3138))
  1026    * provider/cloudstack: Add `project` parameter to `cloudstack_vpc`, `cloudstack_network`, `cloudstack_ipaddress` and `cloudstack_disk` ([#3035](https://github.com/hashicorp/terraform/issues/3035))
  1027    * provider/openstack: add functionality to attach FloatingIP to Port ([#1788](https://github.com/hashicorp/terraform/issues/1788))
  1028    * provider/google: Can now do multi-region deployments without using multiple providers ([#3258](https://github.com/hashicorp/terraform/issues/3258))
  1029    * remote/s3: Allow canned ACLs to be set on state objects. ([#3233](https://github.com/hashicorp/terraform/issues/3233))
  1030    * remote/s3: Remote state is stored in S3 with `Content-Type: application/json` ([#3385](https://github.com/hashicorp/terraform/issues/3385))
  1031  
  1032  BUG FIXES:
  1033  
  1034    * core: Fix problems referencing list attributes in interpolations ([#2157](https://github.com/hashicorp/terraform/issues/2157))
  1035    * core: don't error on computed value during input walk ([#2988](https://github.com/hashicorp/terraform/issues/2988))
  1036    * core: Ignore missing variables during destroy phase ([#3393](https://github.com/hashicorp/terraform/issues/3393))
  1037    * provider/google: Crashes with interface conversion in GCE Instance Template ([#3027](https://github.com/hashicorp/terraform/issues/3027))
  1038    * provider/google: Convert int to int64 when building the GKE cluster.NodeConfig struct ([#2978](https://github.com/hashicorp/terraform/issues/2978))
  1039    * provider/google: google_compute_instance_template.network_interface.network should be a URL ([#3226](https://github.com/hashicorp/terraform/issues/3226))
  1040    * provider/aws: Retry creation of `aws_ecs_service` if IAM policy isn't ready yet ([#3061](https://github.com/hashicorp/terraform/issues/3061))
  1041    * provider/aws: Fix issue with mixed capitalization for RDS Instances  ([#3053](https://github.com/hashicorp/terraform/issues/3053))
  1042    * provider/aws: Fix issue with RDS to allow major version upgrades ([#3053](https://github.com/hashicorp/terraform/issues/3053))
  1043    * provider/aws: Fix shard_count in `aws_kinesis_stream` ([#2986](https://github.com/hashicorp/terraform/issues/2986))
  1044    * provider/aws: Fix issue with `key_name` and using VPCs with spot instance requests ([#2954](https://github.com/hashicorp/terraform/issues/2954))
  1045    * provider/aws: Fix unresolvable diffs coming from `aws_elasticache_cluster` names being downcased
  1046        by AWS ([#3120](https://github.com/hashicorp/terraform/issues/3120))
  1047    * provider/aws: Read instance source_dest_check and save to state ([#3152](https://github.com/hashicorp/terraform/issues/3152))
  1048    * provider/aws: Allow `weight = 0` in Route53 records ([#3196](https://github.com/hashicorp/terraform/issues/3196))
  1049    * provider/aws: Normalize aws_elasticache_cluster id to lowercase, allowing convergence. ([#3235](https://github.com/hashicorp/terraform/issues/3235))
  1050    * provider/aws: Fix ValidateAccountId for IAM Instance Profiles ([#3313](https://github.com/hashicorp/terraform/issues/3313))
  1051    * provider/aws: Update Security Group Rules to Version 2 ([#3019](https://github.com/hashicorp/terraform/issues/3019))
  1052    * provider/aws: Migrate KeyPair to version 1, fixing issue with using `file()` ([#3470](https://github.com/hashicorp/terraform/issues/3470))
  1053    * provider/aws: Fix force_delete on autoscaling groups ([#3485](https://github.com/hashicorp/terraform/issues/3485))
  1054    * provider/aws: Fix crash with VPC Peering connections ([#3490](https://github.com/hashicorp/terraform/issues/3490))
  1055    * provider/aws: fix bug with reading GSIs from dynamodb ([#3300](https://github.com/hashicorp/terraform/issues/3300))
  1056    * provider/docker: Fix issue preventing private images from being referenced ([#2619](https://github.com/hashicorp/terraform/issues/2619))
  1057    * provider/digitalocean: Fix issue causing unnecessary diffs based on droplet slugsize case ([#3284](https://github.com/hashicorp/terraform/issues/3284))
  1058    * provider/openstack: add state 'downloading' to list of expected states in
  1059        `blockstorage_volume_v1` creation ([#2866](https://github.com/hashicorp/terraform/issues/2866))
  1060    * provider/openstack: remove security groups (by name) before adding security
  1061        groups (by id) ([#2008](https://github.com/hashicorp/terraform/issues/2008))
  1062  
  1063  INTERNAL IMPROVEMENTS:
  1064  
  1065    * core: Makefile target "plugin-dev" for building just one plugin. ([#3229](https://github.com/hashicorp/terraform/issues/3229))
  1066    * helper/schema: Don't allow ``Update`` func if no attributes can actually be updated, per schema. ([#3288](https://github.com/hashicorp/terraform/issues/3288))
  1067    * helper/schema: Default hashing function for sets ([#3018](https://github.com/hashicorp/terraform/issues/3018))
  1068    * helper/multierror: Remove in favor of [github.com/hashicorp/go-multierror](http://github.com/hashicorp/go-multierror). ([#3336](https://github.com/hashicorp/terraform/issues/3336))
  1069  
  1070  ## 0.6.3 (August 11, 2015)
  1071  
  1072  BUG FIXES:
  1073  
  1074    * core: Skip all descendents after error, not just children; helps prevent confusing
  1075        additional errors/crashes after initial failure ([#2963](https://github.com/hashicorp/terraform/issues/2963))
  1076    * core: fix deadlock possibility when both a module and a dependent resource are
  1077        removed in the same run ([#2968](https://github.com/hashicorp/terraform/issues/2968))
  1078    * provider/aws: Fix issue with authenticating when using IAM profiles ([#2959](https://github.com/hashicorp/terraform/issues/2959))
  1079  
  1080  ## 0.6.2 (August 6, 2015)
  1081  
  1082  FEATURES:
  1083  
  1084    * **New resource: `google_compute_instance_group_manager`** ([#2868](https://github.com/hashicorp/terraform/issues/2868))
  1085    * **New resource: `google_compute_autoscaler`** ([#2868](https://github.com/hashicorp/terraform/issues/2868))
  1086    * **New resource: `aws_s3_bucket_object`** ([#2898](https://github.com/hashicorp/terraform/issues/2898))
  1087  
  1088  IMPROVEMENTS:
  1089  
  1090    * core: Add resource IDs to errors coming from `apply`/`refresh` ([#2815](https://github.com/hashicorp/terraform/issues/2815))
  1091    * provider/aws: Validate credentials before walking the graph ([#2730](https://github.com/hashicorp/terraform/issues/2730))
  1092    * provider/aws: Added website_domain for S3 buckets ([#2210](https://github.com/hashicorp/terraform/issues/2210))
  1093    * provider/aws: ELB names are now optional, and generated by Terraform if omitted ([#2571](https://github.com/hashicorp/terraform/issues/2571))
  1094    * provider/aws: Downcase RDS engine names to prevent continuous diffs ([#2745](https://github.com/hashicorp/terraform/issues/2745))
  1095    * provider/aws: Added `source_dest_check` attribute to the aws_network_interface ([#2741](https://github.com/hashicorp/terraform/issues/2741))
  1096    * provider/aws: Clean up externally removed Launch Configurations ([#2806](https://github.com/hashicorp/terraform/issues/2806))
  1097    * provider/aws: Allow configuration of the DynamoDB Endpoint ([#2825](https://github.com/hashicorp/terraform/issues/2825))
  1098    * provider/aws: Compute private ip addresses of ENIs if they are not specified ([#2743](https://github.com/hashicorp/terraform/issues/2743))
  1099    * provider/aws: Add `arn` attribute for DynamoDB tables ([#2924](https://github.com/hashicorp/terraform/issues/2924))
  1100    * provider/aws: Fail silently when account validation fails while from instance profile ([#3001](https://github.com/hashicorp/terraform/issues/3001))
  1101    * provider/azure: Allow `settings_file` to accept XML string ([#2922](https://github.com/hashicorp/terraform/issues/2922))
  1102    * provider/azure: Provide a simpler error when using a Platform Image without a
  1103        Storage Service ([#2861](https://github.com/hashicorp/terraform/issues/2861))
  1104    * provider/google: `account_file` is now expected to be JSON. Paths are still supported for
  1105        backwards compatibility. ([#2839](https://github.com/hashicorp/terraform/issues/2839))
  1106  
  1107  BUG FIXES:
  1108  
  1109    * core: Prevent error duplication in `apply` ([#2815](https://github.com/hashicorp/terraform/issues/2815))
  1110    * core: Fix crash when  a provider validation adds a warning ([#2878](https://github.com/hashicorp/terraform/issues/2878))
  1111    * provider/aws: Fix issue with toggling monitoring in AWS Instances ([#2794](https://github.com/hashicorp/terraform/issues/2794))
  1112    * provider/aws: Fix issue with Spot Instance Requests and cancellation ([#2805](https://github.com/hashicorp/terraform/issues/2805))
  1113    * provider/aws: Fix issue with checking for ElastiCache cluster cache node status ([#2842](https://github.com/hashicorp/terraform/issues/2842))
  1114    * provider/aws: Fix issue when unable to find a Root Block Device name of an Instance Backed
  1115        AMI ([#2646](https://github.com/hashicorp/terraform/issues/2646))
  1116    * provider/dnsimple: Domain and type should force new records ([#2777](https://github.com/hashicorp/terraform/issues/2777))
  1117    * provider/aws: Fix issue with IAM Server Certificates and Chains ([#2871](https://github.com/hashicorp/terraform/issues/2871))
  1118    * provider/aws: Fix issue with IAM Server Certificates when using `path` ([#2871](https://github.com/hashicorp/terraform/issues/2871))
  1119    * provider/aws: Fix issue in Security Group Rules when the Security Group is not found ([#2897](https://github.com/hashicorp/terraform/issues/2897))
  1120    * provider/aws: allow external ENI attachments ([#2943](https://github.com/hashicorp/terraform/issues/2943))
  1121    * provider/aws: Fix issue with S3 Buckets, and throwing an error when not found ([#2925](https://github.com/hashicorp/terraform/issues/2925))
  1122  
  1123  ## 0.6.1 (July 20, 2015)
  1124  
  1125  FEATURES:
  1126  
  1127    * **New resource: `google_container_cluster`** ([#2357](https://github.com/hashicorp/terraform/issues/2357))
  1128    * **New resource: `aws_vpc_endpoint`** ([#2695](https://github.com/hashicorp/terraform/issues/2695))
  1129  
  1130  IMPROVEMENTS:
  1131  
  1132    * connection/ssh: Print SSH bastion host details to output ([#2684](https://github.com/hashicorp/terraform/issues/2684))
  1133    * provider/aws: Create RDS databases from snapshots ([#2062](https://github.com/hashicorp/terraform/issues/2062))
  1134    * provider/aws: Add support for restoring from Redis backup stored in S3 ([#2634](https://github.com/hashicorp/terraform/issues/2634))
  1135    * provider/aws: Add `maintenance_window` to ElastiCache cluster ([#2642](https://github.com/hashicorp/terraform/issues/2642))
  1136    * provider/aws: Availability Zones are optional when specifying VPC Zone Identifiers in
  1137        Auto Scaling Groups updates ([#2724](https://github.com/hashicorp/terraform/issues/2724))
  1138    * provider/google: Add metadata_startup_script to google_compute_instance ([#2375](https://github.com/hashicorp/terraform/issues/2375))
  1139  
  1140  BUG FIXES:
  1141  
  1142    * core: Don't prompt for variables with defaults ([#2613](https://github.com/hashicorp/terraform/issues/2613))
  1143    * core: Return correct number of planned updates ([#2620](https://github.com/hashicorp/terraform/issues/2620))
  1144    * core: Fix "provider not found" error that can occur while running
  1145        a destroy plan with grandchildren modules ([#2755](https://github.com/hashicorp/terraform/issues/2755))
  1146    * core: Fix UUID showing up in diff for computed splat (`foo.*.bar`)
  1147        variables. ([#2788](https://github.com/hashicorp/terraform/issues/2788))
  1148    * core: Orphan modules that contain no resources (only other modules)
  1149        are properly destroyed up to arbitrary depth ([#2786](https://github.com/hashicorp/terraform/issues/2786))
  1150    * core: Fix "attribute not available" during destroy plans in
  1151        cases where the parameter is passed between modules ([#2775](https://github.com/hashicorp/terraform/issues/2775))
  1152    * core: Record schema version when destroy fails ([#2923](https://github.com/hashicorp/terraform/issues/2923))
  1153    * connection/ssh: fix issue on machines with an SSH Agent available
  1154      preventing `key_file` from being read without explicitly
  1155      setting `agent = false` ([#2615](https://github.com/hashicorp/terraform/issues/2615))
  1156    * provider/aws: Allow uppercase characters in `aws_elb.name` ([#2580](https://github.com/hashicorp/terraform/issues/2580))
  1157    * provider/aws: Allow underscores in `aws_db_subnet_group.name` (undocumented by AWS) ([#2604](https://github.com/hashicorp/terraform/issues/2604))
  1158    * provider/aws: Allow dots in `aws_db_subnet_group.name` (undocumented by AWS) ([#2665](https://github.com/hashicorp/terraform/issues/2665))
  1159    * provider/aws: Fix issue with pending Spot Instance requests ([#2640](https://github.com/hashicorp/terraform/issues/2640))
  1160    * provider/aws: Fix issue in AWS Classic environment with referencing external
  1161        Security Groups ([#2644](https://github.com/hashicorp/terraform/issues/2644))
  1162    * provider/aws: Bump internet gateway detach timeout ([#2669](https://github.com/hashicorp/terraform/issues/2669))
  1163    * provider/aws: Fix issue with detecting differences in DB Parameters ([#2728](https://github.com/hashicorp/terraform/issues/2728))
  1164    * provider/aws: `ecs_cluster` rename (recreation) and deletion is handled correctly ([#2698](https://github.com/hashicorp/terraform/issues/2698))
  1165    * provider/aws: `aws_route_table` ignores routes generated for VPC endpoints ([#2695](https://github.com/hashicorp/terraform/issues/2695))
  1166    * provider/aws: Fix issue with Launch Configurations and enable_monitoring ([#2735](https://github.com/hashicorp/terraform/issues/2735))
  1167    * provider/openstack: allow empty api_key and endpoint_type ([#2626](https://github.com/hashicorp/terraform/issues/2626))
  1168    * provisioner/chef: Fix permission denied error with ohai hints ([#2781](https://github.com/hashicorp/terraform/issues/2781))
  1169  
  1170  ## 0.6.0 (June 30, 2015)
  1171  
  1172  BACKWARDS INCOMPATIBILITIES:
  1173  
  1174   * command/push: If a variable is already set within Atlas, it won't be
  1175       updated unless the `-overwrite` flag is present ([#2373](https://github.com/hashicorp/terraform/issues/2373))
  1176   * connection/ssh: The `agent` field now defaults to `true` if
  1177       the `SSH_AGENT_SOCK` environment variable is present. In other words,
  1178       `ssh-agent` support is now opt-out instead of opt-in functionality. ([#2408](https://github.com/hashicorp/terraform/issues/2408))
  1179   * provider/aws: If you were setting access and secret key to blank ("")
  1180       to force Terraform to load credentials from another source such as the
  1181       EC2 role, this will now error. Remove the blank lines and Terraform
  1182       will load from other sources.
  1183   * `concat()` has been repurposed to combine lists instead of strings (old behavior
  1184       of joining strings is maintained in this version but is deprecated, strings
  1185       should be combined using interpolation syntax, like "${var.foo}{var.bar}")
  1186       ([#1790](https://github.com/hashicorp/terraform/issues/1790))
  1187  
  1188  FEATURES:
  1189  
  1190    * **New provider: `azure`** [GH-2052, GH-2053, GH-2372, GH-2380, GH-2394, GH-2515, GH-2530, GH-2562]
  1191    * **New resource: `aws_autoscaling_notification`** ([#2197](https://github.com/hashicorp/terraform/issues/2197))
  1192    * **New resource: `aws_autoscaling_policy`** ([#2201](https://github.com/hashicorp/terraform/issues/2201))
  1193    * **New resource: `aws_cloudwatch_metric_alarm`** ([#2201](https://github.com/hashicorp/terraform/issues/2201))
  1194    * **New resource: `aws_dynamodb_table`** ([#2121](https://github.com/hashicorp/terraform/issues/2121))
  1195    * **New resource: `aws_ecs_cluster`** ([#1803](https://github.com/hashicorp/terraform/issues/1803))
  1196    * **New resource: `aws_ecs_service`** ([#1803](https://github.com/hashicorp/terraform/issues/1803))
  1197    * **New resource: `aws_ecs_task_definition`** [GH-1803, GH-2402]
  1198    * **New resource: `aws_elasticache_parameter_group`** ([#2276](https://github.com/hashicorp/terraform/issues/2276))
  1199    * **New resource: `aws_flow_log`** ([#2384](https://github.com/hashicorp/terraform/issues/2384))
  1200    * **New resource: `aws_iam_group_association`** ([#2273](https://github.com/hashicorp/terraform/issues/2273))
  1201    * **New resource: `aws_iam_policy_attachment`** ([#2395](https://github.com/hashicorp/terraform/issues/2395))
  1202    * **New resource: `aws_lambda_function`** ([#2170](https://github.com/hashicorp/terraform/issues/2170))
  1203    * **New resource: `aws_route53_delegation_set`** ([#1999](https://github.com/hashicorp/terraform/issues/1999))
  1204    * **New resource: `aws_route53_health_check`** ([#2226](https://github.com/hashicorp/terraform/issues/2226))
  1205    * **New resource: `aws_spot_instance_request`** ([#2263](https://github.com/hashicorp/terraform/issues/2263))
  1206    * **New resource: `cloudstack_ssh_keypair`** ([#2004](https://github.com/hashicorp/terraform/issues/2004))
  1207    * **New remote state backend: `swift`**: You can now store remote state in
  1208       a OpenStack Swift. ([#2254](https://github.com/hashicorp/terraform/issues/2254))
  1209    * command/output: support display of module outputs ([#2102](https://github.com/hashicorp/terraform/issues/2102))
  1210    * core: `keys()` and `values()` funcs for map variables ([#2198](https://github.com/hashicorp/terraform/issues/2198))
  1211    * connection/ssh: SSH bastion host support and ssh-agent forwarding ([#2425](https://github.com/hashicorp/terraform/issues/2425))
  1212  
  1213  IMPROVEMENTS:
  1214  
  1215    * core: HTTP remote state now accepts `skip_cert_verification`
  1216        option to ignore TLS cert verification. ([#2214](https://github.com/hashicorp/terraform/issues/2214))
  1217    * core: S3 remote state now accepts the 'encrypt' option for SSE ([#2405](https://github.com/hashicorp/terraform/issues/2405))
  1218    * core: `plan` now reports sum of resources to be changed/created/destroyed ([#2458](https://github.com/hashicorp/terraform/issues/2458))
  1219    * core: Change string list representation so we can distinguish empty, single
  1220        element lists ([#2504](https://github.com/hashicorp/terraform/issues/2504))
  1221    * core: Properly close provider and provisioner plugin connections [GH-2406, GH-2527]
  1222    * provider/aws: AutoScaling groups now support updating Load Balancers without
  1223        recreation ([#2472](https://github.com/hashicorp/terraform/issues/2472))
  1224    * provider/aws: Allow more in-place updates for ElastiCache cluster without recreating
  1225        ([#2469](https://github.com/hashicorp/terraform/issues/2469))
  1226    * provider/aws: ElastiCache Subnet Groups can be updated
  1227        without destroying first ([#2191](https://github.com/hashicorp/terraform/issues/2191))
  1228    * provider/aws: Normalize `certificate_chain` in `aws_iam_server_certificate` to
  1229        prevent unnecessary replacement. ([#2411](https://github.com/hashicorp/terraform/issues/2411))
  1230    * provider/aws: `aws_instance` supports `monitoring' ([#2489](https://github.com/hashicorp/terraform/issues/2489))
  1231    * provider/aws: `aws_launch_configuration` now supports `enable_monitoring` ([#2410](https://github.com/hashicorp/terraform/issues/2410))
  1232    * provider/aws: Show outputs after `terraform refresh` ([#2347](https://github.com/hashicorp/terraform/issues/2347))
  1233    * provider/aws: Add backoff/throttling during DynamoDB creation ([#2462](https://github.com/hashicorp/terraform/issues/2462))
  1234    * provider/aws: Add validation for aws_vpc.cidr_block ([#2514](https://github.com/hashicorp/terraform/issues/2514))
  1235    * provider/aws: Add validation for aws_db_subnet_group.name ([#2513](https://github.com/hashicorp/terraform/issues/2513))
  1236    * provider/aws: Add validation for aws_db_instance.identifier ([#2516](https://github.com/hashicorp/terraform/issues/2516))
  1237    * provider/aws: Add validation for aws_elb.name ([#2517](https://github.com/hashicorp/terraform/issues/2517))
  1238    * provider/aws: Add validation for aws_security_group (name+description) ([#2518](https://github.com/hashicorp/terraform/issues/2518))
  1239    * provider/aws: Add validation for aws_launch_configuration ([#2519](https://github.com/hashicorp/terraform/issues/2519))
  1240    * provider/aws: Add validation for aws_autoscaling_group.name ([#2520](https://github.com/hashicorp/terraform/issues/2520))
  1241    * provider/aws: Add validation for aws_iam_role.name ([#2521](https://github.com/hashicorp/terraform/issues/2521))
  1242    * provider/aws: Add validation for aws_iam_role_policy.name ([#2552](https://github.com/hashicorp/terraform/issues/2552))
  1243    * provider/aws: Add validation for aws_iam_instance_profile.name ([#2553](https://github.com/hashicorp/terraform/issues/2553))
  1244    * provider/aws: aws_auto_scaling_group.default_cooldown no longer requires
  1245        resource replacement ([#2510](https://github.com/hashicorp/terraform/issues/2510))
  1246    * provider/aws: add AH and ESP protocol integers ([#2321](https://github.com/hashicorp/terraform/issues/2321))
  1247    * provider/docker: `docker_container` has the `privileged`
  1248        option. ([#2227](https://github.com/hashicorp/terraform/issues/2227))
  1249    * provider/openstack: allow `OS_AUTH_TOKEN` environment variable
  1250        to set the openstack `api_key` field ([#2234](https://github.com/hashicorp/terraform/issues/2234))
  1251    * provider/openstack: Can now configure endpoint type (public, admin,
  1252        internal) ([#2262](https://github.com/hashicorp/terraform/issues/2262))
  1253    * provider/cloudstack: `cloudstack_instance` now supports projects ([#2115](https://github.com/hashicorp/terraform/issues/2115))
  1254    * provisioner/chef: Added a `os_type` to specifically specify the target OS ([#2483](https://github.com/hashicorp/terraform/issues/2483))
  1255    * provisioner/chef: Added a `ohai_hints` option to upload hint files ([#2487](https://github.com/hashicorp/terraform/issues/2487))
  1256  
  1257  BUG FIXES:
  1258  
  1259    * core: lifecycle `prevent_destroy` can be any value that can be
  1260        coerced into a bool ([#2268](https://github.com/hashicorp/terraform/issues/2268))
  1261    * core: matching provider types in sibling modules won't override
  1262        each other's config. ([#2464](https://github.com/hashicorp/terraform/issues/2464))
  1263    * core: computed provider configurations now properly validate ([#2457](https://github.com/hashicorp/terraform/issues/2457))
  1264    * core: orphan (commented out) resource dependencies are destroyed in
  1265        the correct order ([#2453](https://github.com/hashicorp/terraform/issues/2453))
  1266    * core: validate object types in plugins are actually objects ([#2450](https://github.com/hashicorp/terraform/issues/2450))
  1267    * core: fix `-no-color` flag in subcommands ([#2414](https://github.com/hashicorp/terraform/issues/2414))
  1268    * core: Fix error of 'attribute not found for variable' when a computed
  1269        resource attribute is used as a parameter to a module ([#2477](https://github.com/hashicorp/terraform/issues/2477))
  1270    * core: moduled orphans will properly inherit provider configs ([#2476](https://github.com/hashicorp/terraform/issues/2476))
  1271    * core: modules with provider aliases work properly if the parent
  1272        doesn't implement those aliases ([#2475](https://github.com/hashicorp/terraform/issues/2475))
  1273    * core: unknown resource attributes passed in as parameters to modules
  1274        now error ([#2478](https://github.com/hashicorp/terraform/issues/2478))
  1275    * core: better error messages for missing variables ([#2479](https://github.com/hashicorp/terraform/issues/2479))
  1276    * core: removed set items now properly appear in diffs and applies ([#2507](https://github.com/hashicorp/terraform/issues/2507))
  1277    * core: '*' will not be added as part of the variable name when you
  1278        attempt multiplication without a space ([#2505](https://github.com/hashicorp/terraform/issues/2505))
  1279    * core: fix target dependency calculation across module boundaries ([#2555](https://github.com/hashicorp/terraform/issues/2555))
  1280    * command/*: fixed bug where variable input was not asked for unset
  1281        vars if terraform.tfvars existed ([#2502](https://github.com/hashicorp/terraform/issues/2502))
  1282    * command/apply: prevent output duplication when reporting errors ([#2267](https://github.com/hashicorp/terraform/issues/2267))
  1283    * command/apply: destroyed orphan resources are properly counted ([#2506](https://github.com/hashicorp/terraform/issues/2506))
  1284    * provider/aws: loading credentials from the environment (vars, EC2 role,
  1285        etc.) is more robust and will not ask for credentials from stdin ([#1841](https://github.com/hashicorp/terraform/issues/1841))
  1286    * provider/aws: fix panic when route has no `cidr_block` ([#2215](https://github.com/hashicorp/terraform/issues/2215))
  1287    * provider/aws: fix issue preventing destruction of IAM Roles ([#2177](https://github.com/hashicorp/terraform/issues/2177))
  1288    * provider/aws: fix issue where Security Group Rules could collide and fail
  1289        to save to the state file correctly ([#2376](https://github.com/hashicorp/terraform/issues/2376))
  1290    * provider/aws: fix issue preventing destruction self referencing Securtity
  1291       Group Rules ([#2305](https://github.com/hashicorp/terraform/issues/2305))
  1292    * provider/aws: fix issue causing perpetual diff on ELB listeners
  1293        when non-lowercase protocol strings were used ([#2246](https://github.com/hashicorp/terraform/issues/2246))
  1294    * provider/aws: corrected frankfurt S3 website region ([#2259](https://github.com/hashicorp/terraform/issues/2259))
  1295    * provider/aws: `aws_elasticache_cluster` port is required ([#2160](https://github.com/hashicorp/terraform/issues/2160))
  1296    * provider/aws: Handle AMIs where RootBlockDevice does not appear in the
  1297        BlockDeviceMapping, preventing root_block_device from working ([#2271](https://github.com/hashicorp/terraform/issues/2271))
  1298    * provider/aws: fix `terraform show` with remote state ([#2371](https://github.com/hashicorp/terraform/issues/2371))
  1299    * provider/aws: detect `instance_type` drift on `aws_instance` ([#2374](https://github.com/hashicorp/terraform/issues/2374))
  1300    * provider/aws: fix crash when `security_group_rule` referenced non-existent
  1301        security group ([#2434](https://github.com/hashicorp/terraform/issues/2434))
  1302    * provider/aws: `aws_launch_configuration` retries if IAM instance
  1303        profile is not ready yet. ([#2452](https://github.com/hashicorp/terraform/issues/2452))
  1304    * provider/aws: `fqdn` is populated during creation for `aws_route53_record` ([#2528](https://github.com/hashicorp/terraform/issues/2528))
  1305    * provider/aws: retry VPC delete on DependencyViolation due to eventual
  1306        consistency ([#2532](https://github.com/hashicorp/terraform/issues/2532))
  1307    * provider/aws: VPC peering connections in "failed" state are deleted ([#2544](https://github.com/hashicorp/terraform/issues/2544))
  1308    * provider/aws: EIP deletion works if it was manually disassociated ([#2543](https://github.com/hashicorp/terraform/issues/2543))
  1309    * provider/aws: `elasticache_subnet_group.subnet_ids` is now a required argument ([#2534](https://github.com/hashicorp/terraform/issues/2534))
  1310    * provider/aws: handle nil response from VPN connection describes ([#2533](https://github.com/hashicorp/terraform/issues/2533))
  1311    * provider/cloudflare: manual record deletion doesn't cause error ([#2545](https://github.com/hashicorp/terraform/issues/2545))
  1312    * provider/digitalocean: handle case where droplet is deleted outside of
  1313        terraform ([#2497](https://github.com/hashicorp/terraform/issues/2497))
  1314    * provider/dme: No longer an error if record deleted manually ([#2546](https://github.com/hashicorp/terraform/issues/2546))
  1315    * provider/docker: Fix issues when using containers with links ([#2327](https://github.com/hashicorp/terraform/issues/2327))
  1316    * provider/openstack: fix panic case if API returns nil network ([#2448](https://github.com/hashicorp/terraform/issues/2448))
  1317    * provider/template: fix issue causing "unknown variable" rendering errors
  1318        when an existing set of template variables is changed ([#2386](https://github.com/hashicorp/terraform/issues/2386))
  1319    * provisioner/chef: improve the decoding logic to prevent parameter not found errors ([#2206](https://github.com/hashicorp/terraform/issues/2206))
  1320  
  1321  ## 0.5.3 (June 1, 2015)
  1322  
  1323  IMPROVEMENTS:
  1324  
  1325    * **New resource: `aws_kinesis_stream`** ([#2110](https://github.com/hashicorp/terraform/issues/2110))
  1326    * **New resource: `aws_iam_server_certificate`** ([#2086](https://github.com/hashicorp/terraform/issues/2086))
  1327    * **New resource: `aws_sqs_queue`** ([#1939](https://github.com/hashicorp/terraform/issues/1939))
  1328    * **New resource: `aws_sns_topic`** ([#1974](https://github.com/hashicorp/terraform/issues/1974))
  1329    * **New resource: `aws_sns_topic_subscription`** ([#1974](https://github.com/hashicorp/terraform/issues/1974))
  1330    * **New resource: `aws_volume_attachment`** ([#2050](https://github.com/hashicorp/terraform/issues/2050))
  1331    * **New resource: `google_storage_bucket`** ([#2060](https://github.com/hashicorp/terraform/issues/2060))
  1332    * provider/aws: support ec2 termination protection ([#1988](https://github.com/hashicorp/terraform/issues/1988))
  1333    * provider/aws: support for RDS Read Replicas ([#1946](https://github.com/hashicorp/terraform/issues/1946))
  1334    * provider/aws: `aws_s3_bucket` add support for `policy` ([#1992](https://github.com/hashicorp/terraform/issues/1992))
  1335    * provider/aws: `aws_ebs_volume` add support for `tags` ([#2135](https://github.com/hashicorp/terraform/issues/2135))
  1336    * provider/aws: `aws_elasticache_cluster` Confirm node status before reporting
  1337        available
  1338    * provider/aws: `aws_network_acl` Add support for ICMP Protocol ([#2148](https://github.com/hashicorp/terraform/issues/2148))
  1339    * provider/aws: New `force_destroy` parameter for S3 buckets, to destroy
  1340        Buckets that contain objects ([#2007](https://github.com/hashicorp/terraform/issues/2007))
  1341    * provider/aws: switching `health_check_type` on ASGs no longer requires
  1342        resource refresh ([#2147](https://github.com/hashicorp/terraform/issues/2147))
  1343    * provider/aws: ignore empty `vpc_security_group_ids` on `aws_instance` ([#2311](https://github.com/hashicorp/terraform/issues/2311))
  1344  
  1345  BUG FIXES:
  1346  
  1347    * provider/aws: Correctly handle AWS keypairs which no longer exist ([#2032](https://github.com/hashicorp/terraform/issues/2032))
  1348    * provider/aws: Fix issue with restoring an Instance from snapshot ID ([#2120](https://github.com/hashicorp/terraform/issues/2120))
  1349    * provider/template: store relative path in the state ([#2038](https://github.com/hashicorp/terraform/issues/2038))
  1350    * provisioner/chef: fix interpolation in the Chef provisioner ([#2168](https://github.com/hashicorp/terraform/issues/2168))
  1351    * provisioner/remote-exec: Don't prepend shebang on scripts that already
  1352        have one ([#2041](https://github.com/hashicorp/terraform/issues/2041))
  1353  
  1354  ## 0.5.2 (May 15, 2015)
  1355  
  1356  FEATURES:
  1357  
  1358    * **Chef provisioning**: You can now provision new hosts (both Linux and
  1359       Windows) with [Chef](https://chef.io) using a native provisioner ([#1868](https://github.com/hashicorp/terraform/issues/1868))
  1360  
  1361  IMPROVEMENTS:
  1362  
  1363    * **New config function: `formatlist`** - Format lists in a similar way to `format`.
  1364      Useful for creating URLs from a list of IPs. ([#1829](https://github.com/hashicorp/terraform/issues/1829))
  1365    * **New resource: `aws_route53_zone_association`**
  1366    * provider/aws: `aws_autoscaling_group` can wait for capacity in ELB
  1367        via `min_elb_capacity` ([#1970](https://github.com/hashicorp/terraform/issues/1970))
  1368    * provider/aws: `aws_db_instances` supports `license_model` ([#1966](https://github.com/hashicorp/terraform/issues/1966))
  1369    * provider/aws: `aws_elasticache_cluster` add support for Tags ([#1965](https://github.com/hashicorp/terraform/issues/1965))
  1370    * provider/aws: `aws_network_acl` Network ACLs can be applied to multiple subnets ([#1931](https://github.com/hashicorp/terraform/issues/1931))
  1371    * provider/aws: `aws_s3_bucket` exports `hosted_zone_id` and `region` ([#1865](https://github.com/hashicorp/terraform/issues/1865))
  1372    * provider/aws: `aws_s3_bucket` add support for website `redirect_all_requests_to` ([#1909](https://github.com/hashicorp/terraform/issues/1909))
  1373    * provider/aws: `aws_route53_record` exports `fqdn` ([#1847](https://github.com/hashicorp/terraform/issues/1847))
  1374    * provider/aws: `aws_route53_zone` can create private hosted zones ([#1526](https://github.com/hashicorp/terraform/issues/1526))
  1375    * provider/google: `google_compute_instance` `scratch` attribute added ([#1920](https://github.com/hashicorp/terraform/issues/1920))
  1376  
  1377  BUG FIXES:
  1378  
  1379    * core: fix "resource not found" for interpolation issues with modules
  1380    * core: fix unflattenable error for orphans ([#1922](https://github.com/hashicorp/terraform/issues/1922))
  1381    * core: fix deadlock with create-before-destroy + modules ([#1949](https://github.com/hashicorp/terraform/issues/1949))
  1382    * core: fix "no roots found" error with create-before-destroy ([#1953](https://github.com/hashicorp/terraform/issues/1953))
  1383    * core: variables set with environment variables won't validate as
  1384        not set without a default ([#1930](https://github.com/hashicorp/terraform/issues/1930))
  1385    * core: resources with a blank ID in the state are now assumed to not exist ([#1905](https://github.com/hashicorp/terraform/issues/1905))
  1386    * command/push: local vars override remote ones ([#1881](https://github.com/hashicorp/terraform/issues/1881))
  1387    * provider/aws: Mark `aws_security_group` description as `ForceNew` ([#1871](https://github.com/hashicorp/terraform/issues/1871))
  1388    * provider/aws: `aws_db_instance` ARN value is correct ([#1910](https://github.com/hashicorp/terraform/issues/1910))
  1389    * provider/aws: `aws_db_instance` only submit modify request if there
  1390        is a change. ([#1906](https://github.com/hashicorp/terraform/issues/1906))
  1391    * provider/aws: `aws_elasticache_cluster` export missing information on cluster nodes ([#1965](https://github.com/hashicorp/terraform/issues/1965))
  1392    * provider/aws: bad AMI on a launch configuration won't block refresh ([#1901](https://github.com/hashicorp/terraform/issues/1901))
  1393    * provider/aws: `aws_security_group` + `aws_subnet` - destroy timeout increased
  1394      to prevent DependencyViolation errors. ([#1886](https://github.com/hashicorp/terraform/issues/1886))
  1395    * provider/google: `google_compute_instance` Local SSDs no-longer cause crash
  1396        ([#1088](https://github.com/hashicorp/terraform/issues/1088))
  1397    * provider/google: `google_http_health_check` Defaults now driven from Terraform,
  1398        avoids errors on update ([#1894](https://github.com/hashicorp/terraform/issues/1894))
  1399    * provider/google: `google_compute_template` Update Instance Template network
  1400        definition to match changes to Instance ([#980](https://github.com/hashicorp/terraform/issues/980))
  1401    * provider/template: Fix infinite diff ([#1898](https://github.com/hashicorp/terraform/issues/1898))
  1402  
  1403  ## 0.5.1 (never released)
  1404  
  1405  This version was never released since we accidentally skipped it!
  1406  
  1407  ## 0.5.0 (May 7, 2015)
  1408  
  1409  BACKWARDS INCOMPATIBILITIES:
  1410  
  1411    * provider/aws: Terraform now remove the default egress rule created by AWS in
  1412      a new security group.
  1413  
  1414  FEATURES:
  1415  
  1416    * **Multi-provider (a.k.a multi-region)**: Multiple instances of a single
  1417       provider can be configured so resources can apply to different settings.
  1418       As an example, this allows Terraform to manage multiple regions with AWS.
  1419    * **Environmental variables to set variables**: Environment variables can be
  1420       used to set variables. The environment variables must be in the format
  1421       `TF_VAR_name` and this will be checked last for a value.
  1422    * **New remote state backend: `s3`**: You can now store remote state in
  1423       an S3 bucket. ([#1723](https://github.com/hashicorp/terraform/issues/1723))
  1424    * **Automatic AWS retries**: This release includes a lot of improvement
  1425       around automatic retries of transient errors in AWS. The number of
  1426       retry attempts is also configurable.
  1427    * **Templates**: A new `template_file` resource allows long strings needing
  1428       variable interpolation to be moved into files. ([#1778](https://github.com/hashicorp/terraform/issues/1778))
  1429    * **Provision with WinRM**: Provisioners can now run remote commands on
  1430       Windows hosts. ([#1483](https://github.com/hashicorp/terraform/issues/1483))
  1431  
  1432  IMPROVEMENTS:
  1433  
  1434    * **New config function: `length`** - Get the length of a string or a list.
  1435        Useful in conjunction with `split`. ([#1495](https://github.com/hashicorp/terraform/issues/1495))
  1436    * **New resource: `aws_app_cookie_stickiness_policy`**
  1437    * **New resource: `aws_customer_gateway`**
  1438    * **New resource: `aws_ebs_volume`**
  1439    * **New resource: `aws_elasticache_cluster`**
  1440    * **New resource: `aws_elasticache_security_group`**
  1441    * **New resource: `aws_elasticache_subnet_group`**
  1442    * **New resource: `aws_iam_access_key`**
  1443    * **New resource: `aws_iam_group_policy`**
  1444    * **New resource: `aws_iam_group`**
  1445    * **New resource: `aws_iam_instance_profile`**
  1446    * **New resource: `aws_iam_policy`**
  1447    * **New resource: `aws_iam_role_policy`**
  1448    * **New resource: `aws_iam_role`**
  1449    * **New resource: `aws_iam_user_policy`**
  1450    * **New resource: `aws_iam_user`**
  1451    * **New resource: `aws_lb_cookie_stickiness_policy`**
  1452    * **New resource: `aws_proxy_protocol_policy`**
  1453    * **New resource: `aws_security_group_rule`**
  1454    * **New resource: `aws_vpc_dhcp_options_association`**
  1455    * **New resource: `aws_vpc_dhcp_options`**
  1456    * **New resource: `aws_vpn_connection_route`**
  1457    * **New resource: `google_dns_managed_zone`**
  1458    * **New resource: `google_dns_record_set`**
  1459    * **Migrate to upstream AWS SDK:** Migrate the AWS provider to
  1460        [awslabs/aws-sdk-go](https://github.com/awslabs/aws-sdk-go),
  1461        the official `awslabs` library. Previously we had forked the library for
  1462        stability while `awslabs` refactored. Now that work has completed, and we've
  1463        migrated back to the upstream version.
  1464    * core: Improve error message on diff mismatch ([#1501](https://github.com/hashicorp/terraform/issues/1501))
  1465    * provisioner/file: expand `~` in source path ([#1569](https://github.com/hashicorp/terraform/issues/1569))
  1466    * provider/aws: Better retry logic, now retries up to 11 times by default
  1467        with exponentional backoff. This number is configurable. ([#1787](https://github.com/hashicorp/terraform/issues/1787))
  1468    * provider/aws: Improved credential detection ([#1470](https://github.com/hashicorp/terraform/issues/1470))
  1469    * provider/aws: Can specify a `token` via the config file ([#1601](https://github.com/hashicorp/terraform/issues/1601))
  1470    * provider/aws: Added new `vpc_security_group_ids` attribute for AWS
  1471        Instances. If using a VPC, you can now modify the security groups for that
  1472        Instance without destroying it ([#1539](https://github.com/hashicorp/terraform/issues/1539))
  1473    * provider/aws: White or blacklist account IDs that can be used to
  1474        protect against accidents. ([#1595](https://github.com/hashicorp/terraform/issues/1595))
  1475    * provider/aws: Add a subset of IAM resources ([#939](https://github.com/hashicorp/terraform/issues/939))
  1476    * provider/aws: `aws_autoscaling_group` retries deletes through "in progress"
  1477        errors ([#1840](https://github.com/hashicorp/terraform/issues/1840))
  1478    * provider/aws: `aws_autoscaling_group` waits for healthy capacity during
  1479        ASG creation ([#1839](https://github.com/hashicorp/terraform/issues/1839))
  1480    * provider/aws: `aws_instance` supports placement groups ([#1358](https://github.com/hashicorp/terraform/issues/1358))
  1481    * provider/aws: `aws_eip` supports network interface attachment ([#1681](https://github.com/hashicorp/terraform/issues/1681))
  1482    * provider/aws: `aws_elb` supports in-place changing of listeners ([#1619](https://github.com/hashicorp/terraform/issues/1619))
  1483    * provider/aws: `aws_elb` supports connection draining settings ([#1502](https://github.com/hashicorp/terraform/issues/1502))
  1484    * provider/aws: `aws_elb` increase default idle timeout to 60s ([#1646](https://github.com/hashicorp/terraform/issues/1646))
  1485    * provider/aws: `aws_key_pair` name can be omitted and generated ([#1751](https://github.com/hashicorp/terraform/issues/1751))
  1486    * provider/aws: `aws_network_acl` improved validation for network ACL ports
  1487        and protocols ([#1798](https://github.com/hashicorp/terraform/issues/1798)) ([#1808](https://github.com/hashicorp/terraform/issues/1808))
  1488    * provider/aws: `aws_route_table` can target network interfaces ([#968](https://github.com/hashicorp/terraform/issues/968))
  1489    * provider/aws: `aws_route_table` can specify propagating VGWs ([#1516](https://github.com/hashicorp/terraform/issues/1516))
  1490    * provider/aws: `aws_route53_record` supports weighted sets ([#1578](https://github.com/hashicorp/terraform/issues/1578))
  1491    * provider/aws: `aws_route53_zone` exports nameservers ([#1525](https://github.com/hashicorp/terraform/issues/1525))
  1492    * provider/aws: `aws_s3_bucket` website support ([#1738](https://github.com/hashicorp/terraform/issues/1738))
  1493    * provider/aws: `aws_security_group` name becomes optional and can be
  1494        automatically set to a unique identifier; this helps with
  1495        `create_before_destroy` scenarios ([#1632](https://github.com/hashicorp/terraform/issues/1632))
  1496    * provider/aws: `aws_security_group` description becomes optional with a
  1497        static default value ([#1632](https://github.com/hashicorp/terraform/issues/1632))
  1498    * provider/aws: automatically set the private IP as the SSH address
  1499        if not specified and no public IP is available ([#1623](https://github.com/hashicorp/terraform/issues/1623))
  1500    * provider/aws: `aws_elb` exports `source_security_group` field ([#1708](https://github.com/hashicorp/terraform/issues/1708))
  1501    * provider/aws: `aws_route53_record` supports alias targeting ([#1775](https://github.com/hashicorp/terraform/issues/1775))
  1502    * provider/aws: Remove default AWS egress rule for newly created Security Groups ([#1765](https://github.com/hashicorp/terraform/issues/1765))
  1503    * provider/consul: add `scheme` configuration argument ([#1838](https://github.com/hashicorp/terraform/issues/1838))
  1504    * provider/docker: `docker_container` can specify links ([#1564](https://github.com/hashicorp/terraform/issues/1564))
  1505    * provider/google: `resource_compute_disk` supports snapshots ([#1426](https://github.com/hashicorp/terraform/issues/1426))
  1506    * provider/google: `resource_compute_instance` supports specifying the
  1507        device name ([#1426](https://github.com/hashicorp/terraform/issues/1426))
  1508    * provider/openstack: Floating IP support for LBaaS ([#1550](https://github.com/hashicorp/terraform/issues/1550))
  1509    * provider/openstack: Add AZ to `openstack_blockstorage_volume_v1` ([#1726](https://github.com/hashicorp/terraform/issues/1726))
  1510  
  1511  BUG FIXES:
  1512  
  1513    * core: Fix graph cycle issues surrounding modules ([#1582](https://github.com/hashicorp/terraform/issues/1582)) ([#1637](https://github.com/hashicorp/terraform/issues/1637))
  1514    * core: math on arbitrary variables works if first operand isn't a
  1515        numeric primitive. ([#1381](https://github.com/hashicorp/terraform/issues/1381))
  1516    * core: avoid unnecessary cycles by pruning tainted destroys from
  1517        graph if there are no tainted resources ([#1475](https://github.com/hashicorp/terraform/issues/1475))
  1518    * core: fix issue where destroy nodes weren't pruned in specific
  1519        edge cases around matching prefixes, which could cause cycles ([#1527](https://github.com/hashicorp/terraform/issues/1527))
  1520    * core: fix issue causing diff mismatch errors in certain scenarios during
  1521        resource replacement ([#1515](https://github.com/hashicorp/terraform/issues/1515))
  1522    * core: dependencies on resources with a different index work when
  1523        count > 1 ([#1540](https://github.com/hashicorp/terraform/issues/1540))
  1524    * core: don't panic if variable default type is invalid ([#1344](https://github.com/hashicorp/terraform/issues/1344))
  1525    * core: fix perpetual diff issue for computed maps that are empty ([#1607](https://github.com/hashicorp/terraform/issues/1607))
  1526    * core: validation added to check for `self` variables in modules ([#1609](https://github.com/hashicorp/terraform/issues/1609))
  1527    * core: fix edge case where validation didn't pick up unknown fields
  1528        if the value was computed ([#1507](https://github.com/hashicorp/terraform/issues/1507))
  1529    * core: Fix issue where values in sets on resources couldn't contain
  1530        hyphens. ([#1641](https://github.com/hashicorp/terraform/issues/1641))
  1531    * core: Outputs removed from the config are removed from the state ([#1714](https://github.com/hashicorp/terraform/issues/1714))
  1532    * core: Validate against the worst-case graph during plan phase to catch cycles
  1533        that would previously only show up during apply ([#1655](https://github.com/hashicorp/terraform/issues/1655))
  1534    * core: Referencing invalid module output in module validates ([#1448](https://github.com/hashicorp/terraform/issues/1448))
  1535    * command: remote states with uppercase types work ([#1356](https://github.com/hashicorp/terraform/issues/1356))
  1536    * provider/aws: Support `AWS_SECURITY_TOKEN` env var again ([#1785](https://github.com/hashicorp/terraform/issues/1785))
  1537    * provider/aws: Don't save "instance" for EIP if association fails ([#1776](https://github.com/hashicorp/terraform/issues/1776))
  1538    * provider/aws: launch configuration ID set after create success ([#1518](https://github.com/hashicorp/terraform/issues/1518))
  1539    * provider/aws: Fixed an issue with creating ELBs without any tags ([#1580](https://github.com/hashicorp/terraform/issues/1580))
  1540    * provider/aws: Fix issue in Security Groups with empty IPRanges ([#1612](https://github.com/hashicorp/terraform/issues/1612))
  1541    * provider/aws: manually deleted S3 buckets are refreshed properly ([#1574](https://github.com/hashicorp/terraform/issues/1574))
  1542    * provider/aws: only check for EIP allocation ID in VPC ([#1555](https://github.com/hashicorp/terraform/issues/1555))
  1543    * provider/aws: raw protocol numbers work in `aws_network_acl` ([#1435](https://github.com/hashicorp/terraform/issues/1435))
  1544    * provider/aws: Block devices can be encrypted ([#1718](https://github.com/hashicorp/terraform/issues/1718))
  1545    * provider/aws: ASG health check grace period can be updated in-place ([#1682](https://github.com/hashicorp/terraform/issues/1682))
  1546    * provider/aws: ELB security groups can be updated in-place ([#1662](https://github.com/hashicorp/terraform/issues/1662))
  1547    * provider/aws: `aws_main_route_table_association` can be deleted
  1548        manually ([#1806](https://github.com/hashicorp/terraform/issues/1806))
  1549    * provider/docker: image can reference more complex image addresses,
  1550        such as with private repos with ports ([#1818](https://github.com/hashicorp/terraform/issues/1818))
  1551    * provider/openstack: region config is not required ([#1441](https://github.com/hashicorp/terraform/issues/1441))
  1552    * provider/openstack: `enable_dhcp` for networking subnet should be bool ([#1741](https://github.com/hashicorp/terraform/issues/1741))
  1553    * provisioner/remote-exec: add random number to uploaded script path so
  1554        that parallel provisions work ([#1588](https://github.com/hashicorp/terraform/issues/1588))
  1555    * provisioner/remote-exec: chmod the script to 0755 properly ([#1796](https://github.com/hashicorp/terraform/issues/1796))
  1556  
  1557  ## 0.4.2 (April 10, 2015)
  1558  
  1559  BUG FIXES:
  1560  
  1561    * core: refresh won't remove outputs from state file ([#1369](https://github.com/hashicorp/terraform/issues/1369))
  1562    * core: clarify "unknown variable" error ([#1480](https://github.com/hashicorp/terraform/issues/1480))
  1563    * core: properly merge parent provider configs when asking for input
  1564    * provider/aws: fix panic possibility if RDS DB name is empty ([#1460](https://github.com/hashicorp/terraform/issues/1460))
  1565    * provider/aws: fix issue detecting credentials for some resources ([#1470](https://github.com/hashicorp/terraform/issues/1470))
  1566    * provider/google: fix issue causing unresolvable diffs when using legacy
  1567        `network` field on `google_compute_instance` ([#1458](https://github.com/hashicorp/terraform/issues/1458))
  1568  
  1569  ## 0.4.1 (April 9, 2015)
  1570  
  1571  IMPROVEMENTS:
  1572  
  1573    * provider/aws: Route 53 records can now update `ttl` and `records` attributes
  1574        without destroying/creating the record ([#1396](https://github.com/hashicorp/terraform/issues/1396))
  1575    * provider/aws: Support changing additional attributes of RDS databases
  1576        without forcing a new resource  ([#1382](https://github.com/hashicorp/terraform/issues/1382))
  1577  
  1578  BUG FIXES:
  1579  
  1580    * core: module paths in ".terraform" are consistent across different
  1581        systems so copying your ".terraform" folder works. ([#1418](https://github.com/hashicorp/terraform/issues/1418))
  1582    * core: don't validate providers too early when nested in a module ([#1380](https://github.com/hashicorp/terraform/issues/1380))
  1583    * core: fix race condition in `count.index` interpolation ([#1454](https://github.com/hashicorp/terraform/issues/1454))
  1584    * core: properly initialize provisioners, fixing resource targeting
  1585        during destroy ([#1544](https://github.com/hashicorp/terraform/issues/1544))
  1586    * command/push: don't ask for input if terraform.tfvars is present
  1587    * command/remote-config: remove spurrious error "nil" when initializing
  1588        remote state on a new configuration. ([#1392](https://github.com/hashicorp/terraform/issues/1392))
  1589    * provider/aws: Fix issue with Route 53 and pre-existing Hosted Zones ([#1415](https://github.com/hashicorp/terraform/issues/1415))
  1590    * provider/aws: Fix refresh issue in Route 53 hosted zone ([#1384](https://github.com/hashicorp/terraform/issues/1384))
  1591    * provider/aws: Fix issue when changing map-public-ip in Subnets #1234
  1592    * provider/aws: Fix issue finding db subnets ([#1377](https://github.com/hashicorp/terraform/issues/1377))
  1593    * provider/aws: Fix issues with `*_block_device` attributes on instances and
  1594        launch configs creating unresolvable diffs when certain optional
  1595        parameters were omitted from the config ([#1445](https://github.com/hashicorp/terraform/issues/1445))
  1596    * provider/aws: Fix issue with `aws_launch_configuration` causing an
  1597        unnecessary diff for pre-0.4 environments ([#1371](https://github.com/hashicorp/terraform/issues/1371))
  1598    * provider/aws: Fix several related issues with `aws_launch_configuration`
  1599        causing unresolvable diffs ([#1444](https://github.com/hashicorp/terraform/issues/1444))
  1600    * provider/aws: Fix issue preventing launch configurations from being valid
  1601        in EC2 Classic ([#1412](https://github.com/hashicorp/terraform/issues/1412))
  1602    * provider/aws: Fix issue in updating Route 53 records on refresh/read. ([#1430](https://github.com/hashicorp/terraform/issues/1430))
  1603    * provider/docker: Don't ask for `cert_path` input on every run ([#1432](https://github.com/hashicorp/terraform/issues/1432))
  1604    * provider/google: Fix issue causing unresolvable diff on instances with
  1605        `network_interface` ([#1427](https://github.com/hashicorp/terraform/issues/1427))
  1606  
  1607  ## 0.4.0 (April 2, 2015)
  1608  
  1609  BACKWARDS INCOMPATIBILITIES:
  1610  
  1611    * Commands `terraform push` and `terraform pull` are now nested under
  1612      the `remote` command: `terraform remote push` and `terraform remote pull`.
  1613      The old `remote` functionality is now at `terraform remote config`. This
  1614      consolidates all remote state management under one command.
  1615    * Period-prefixed configuration files are now ignored. This might break
  1616      existing Terraform configurations if you had period-prefixed files.
  1617    * The `block_device` attribute of `aws_instance` has been removed in favor
  1618      of three more specific attributes to specify block device mappings:
  1619      `root_block_device`, `ebs_block_device`, and `ephemeral_block_device`.
  1620      Configurations using the old attribute will generate a validation error
  1621      indicating that they must be updated to use the new fields ([#1045](https://github.com/hashicorp/terraform/issues/1045)).
  1622  
  1623  FEATURES:
  1624  
  1625    * **New provider: `dme` (DNSMadeEasy)** ([#855](https://github.com/hashicorp/terraform/issues/855))
  1626    * **New provider: `docker` (Docker)** - Manage container lifecycle
  1627        using the standard Docker API. ([#855](https://github.com/hashicorp/terraform/issues/855))
  1628    * **New provider: `openstack` (OpenStack)** - Interact with the many resources
  1629        provided by OpenStack. ([#924](https://github.com/hashicorp/terraform/issues/924))
  1630    * **New feature: `terraform_remote_state` resource** - Reference remote
  1631        states from other Terraform runs to use Terraform outputs as inputs
  1632        into another Terraform run.
  1633    * **New command: `taint`** - Manually mark a resource as tainted, causing
  1634        a destroy and recreate on the next plan/apply.
  1635    * **New resource: `aws_vpn_gateway`** ([#1137](https://github.com/hashicorp/terraform/issues/1137))
  1636    * **New resource: `aws_elastic_network_interfaces`** ([#1149](https://github.com/hashicorp/terraform/issues/1149))
  1637    * **Self-variables** can be used to reference the current resource's
  1638        attributes within a provisioner. Ex. `${self.private_ip_address}` ([#1033](https://github.com/hashicorp/terraform/issues/1033))
  1639    * **Continuous state** saving during `terraform apply`. The state file is
  1640        continuously updated as apply is running, meaning that the state is
  1641        less likely to become corrupt in a catastrophic case: terraform panic
  1642        or system killing Terraform.
  1643    * **Math operations** in interpolations. You can now do things like
  1644        `${count.index + 1}`. ([#1068](https://github.com/hashicorp/terraform/issues/1068))
  1645    * **New AWS SDK:** Move to `aws-sdk-go` (hashicorp/aws-sdk-go),
  1646        a fork of the official `awslabs` repo. We forked for stability while
  1647        `awslabs` refactored the library, and will move back to the officially
  1648        supported version in the next release.
  1649  
  1650  IMPROVEMENTS:
  1651  
  1652    * **New config function: `format`** - Format a string using `sprintf`
  1653        format. ([#1096](https://github.com/hashicorp/terraform/issues/1096))
  1654    * **New config function: `replace`** - Search and replace string values.
  1655        Search can be a regular expression. See documentation for more
  1656        info. ([#1029](https://github.com/hashicorp/terraform/issues/1029))
  1657    * **New config function: `split`** - Split a value based on a delimiter.
  1658        This is useful for faking lists as parameters to modules.
  1659    * **New resource: `digitalocean_ssh_key`** ([#1074](https://github.com/hashicorp/terraform/issues/1074))
  1660    * config: Expand `~` with homedir in `file()` paths ([#1338](https://github.com/hashicorp/terraform/issues/1338))
  1661    * core: The serial of the state is only updated if there is an actual
  1662        change. This will lower the amount of state changing on things
  1663        like refresh.
  1664    * core: Autoload `terraform.tfvars.json` as well as `terraform.tfvars` ([#1030](https://github.com/hashicorp/terraform/issues/1030))
  1665    * core: `.tf` files that start with a period are now ignored. ([#1227](https://github.com/hashicorp/terraform/issues/1227))
  1666    * command/remote-config: After enabling remote state, a `pull` is
  1667        automatically done initially.
  1668    * providers/google: Add `size` option to disk blocks for instances. ([#1284](https://github.com/hashicorp/terraform/issues/1284))
  1669    * providers/aws: Improve support for tagging resources.
  1670    * providers/aws: Add a short syntax for Route 53 Record names, e.g.
  1671        `www` instead of `www.example.com`.
  1672    * providers/aws: Improve dependency violation error handling, when deleting
  1673        Internet Gateways or Auto Scaling groups ([#1325](https://github.com/hashicorp/terraform/issues/1325)).
  1674    * provider/aws: Add non-destructive updates to AWS RDS. You can now upgrade
  1675        `engine_version`, `parameter_group_name`, and `multi_az` without forcing
  1676        a new database to be created.([#1341](https://github.com/hashicorp/terraform/issues/1341))
  1677    * providers/aws: Full support for block device mappings on instances and
  1678        launch configurations [GH-1045, GH-1364]
  1679    * provisioners/remote-exec: SSH agent support. ([#1208](https://github.com/hashicorp/terraform/issues/1208))
  1680  
  1681  BUG FIXES:
  1682  
  1683    * core: module outputs can be used as inputs to other modules ([#822](https://github.com/hashicorp/terraform/issues/822))
  1684    * core: Self-referencing splat variables are no longer allowed in
  1685        provisioners. ([#795](https://github.com/hashicorp/terraform/issues/795))([#868](https://github.com/hashicorp/terraform/issues/868))
  1686    * core: Validate that `depends_on` doesn't contain interpolations. ([#1015](https://github.com/hashicorp/terraform/issues/1015))
  1687    * core: Module inputs can be non-strings. ([#819](https://github.com/hashicorp/terraform/issues/819))
  1688    * core: Fix invalid plan that resulted in "diffs don't match" error when
  1689        a computed attribute was used as part of a set parameter. ([#1073](https://github.com/hashicorp/terraform/issues/1073))
  1690    * core: Fix edge case where state containing both "resource" and
  1691        "resource.0" would ignore the latter completely. ([#1086](https://github.com/hashicorp/terraform/issues/1086))
  1692    * core: Modules with a source of a relative file path moving up
  1693        directories work properly, i.e. "../a" ([#1232](https://github.com/hashicorp/terraform/issues/1232))
  1694    * providers/aws: manually deleted VPC removes it from the state
  1695    * providers/aws: `source_dest_check` regression fixed (now works). ([#1020](https://github.com/hashicorp/terraform/issues/1020))
  1696    * providers/aws: Longer wait times for DB instances.
  1697    * providers/aws: Longer wait times for route53 records (30 mins). ([#1164](https://github.com/hashicorp/terraform/issues/1164))
  1698    * providers/aws: Fix support for TXT records in Route 53. ([#1213](https://github.com/hashicorp/terraform/issues/1213))
  1699    * providers/aws: Fix support for wildcard records in Route 53. ([#1222](https://github.com/hashicorp/terraform/issues/1222))
  1700    * providers/aws: Fix issue with ignoring the 'self' attribute of a
  1701        Security Group rule. ([#1223](https://github.com/hashicorp/terraform/issues/1223))
  1702    * providers/aws: Fix issue with `sql_mode` in RDS parameter group always
  1703        causing an update. ([#1225](https://github.com/hashicorp/terraform/issues/1225))
  1704    * providers/aws: Fix dependency violation with subnets and security groups
  1705        ([#1252](https://github.com/hashicorp/terraform/issues/1252))
  1706    * providers/aws: Fix issue with refreshing `db_subnet_groups` causing an error
  1707        instead of updating state ([#1254](https://github.com/hashicorp/terraform/issues/1254))
  1708    * providers/aws: Prevent empty string to be used as default
  1709        `health_check_type` ([#1052](https://github.com/hashicorp/terraform/issues/1052))
  1710    * providers/aws: Add tags on AWS IG creation, not just on update ([#1176](https://github.com/hashicorp/terraform/issues/1176))
  1711    * providers/digitalocean: Waits until droplet is ready to be destroyed ([#1057](https://github.com/hashicorp/terraform/issues/1057))
  1712    * providers/digitalocean: More lenient about 404's while waiting ([#1062](https://github.com/hashicorp/terraform/issues/1062))
  1713    * providers/digitalocean: FQDN for domain records in CNAME, MX, NS, etc.
  1714        Also fixes invalid updates in plans. ([#863](https://github.com/hashicorp/terraform/issues/863))
  1715    * providers/google: Network data in state was not being stored. ([#1095](https://github.com/hashicorp/terraform/issues/1095))
  1716    * providers/heroku: Fix panic when config vars block was empty. ([#1211](https://github.com/hashicorp/terraform/issues/1211))
  1717  
  1718  PLUGIN CHANGES:
  1719  
  1720    * New `helper/schema` fields for resources: `Deprecated` and `Removed` allow
  1721        plugins to generate warning or error messages when a given attribute is used.
  1722  
  1723  ## 0.3.7 (February 19, 2015)
  1724  
  1725  IMPROVEMENTS:
  1726  
  1727    * **New resources: `google_compute_forwarding_rule`, `google_compute_http_health_check`,
  1728        and `google_compute_target_pool`** - Together these provide network-level
  1729        load balancing. ([#588](https://github.com/hashicorp/terraform/issues/588))
  1730    * **New resource: `aws_main_route_table_association`** - Manage the main routing table
  1731        of a VPC. ([#918](https://github.com/hashicorp/terraform/issues/918))
  1732    * **New resource: `aws_vpc_peering_connection`** ([#963](https://github.com/hashicorp/terraform/issues/963))
  1733    * core: Formalized the syntax of interpolations and documented it
  1734        very heavily.
  1735    * core: Strings in interpolations can now contain further interpolations,
  1736        e.g.: `foo ${bar("${baz}")}`.
  1737    * provider/aws: Internet gateway supports tags ([#720](https://github.com/hashicorp/terraform/issues/720))
  1738    * provider/aws: Support the more standard environmental variable names
  1739        for access key and secret keys. ([#851](https://github.com/hashicorp/terraform/issues/851))
  1740    * provider/aws: The `aws_db_instance` resource no longer requires both
  1741        `final_snapshot_identifier` and `skip_final_snapshot`; the presence or
  1742        absence of the former now implies the latter. ([#874](https://github.com/hashicorp/terraform/issues/874))
  1743    * provider/aws: Avoid unnecessary update of `aws_subnet` when
  1744        `map_public_ip_on_launch` is not specified in config. ([#898](https://github.com/hashicorp/terraform/issues/898))
  1745    * provider/aws: Add `apply_method` to `aws_db_parameter_group` ([#897](https://github.com/hashicorp/terraform/issues/897))
  1746    * provider/aws: Add `storage_type` to `aws_db_instance` ([#896](https://github.com/hashicorp/terraform/issues/896))
  1747    * provider/aws: ELB can update listeners without requiring new. ([#721](https://github.com/hashicorp/terraform/issues/721))
  1748    * provider/aws: Security group support egress rules. ([#856](https://github.com/hashicorp/terraform/issues/856))
  1749    * provider/aws: Route table supports VPC peering connection on route. ([#963](https://github.com/hashicorp/terraform/issues/963))
  1750    * provider/aws: Add `root_block_device` to `aws_db_instance` ([#998](https://github.com/hashicorp/terraform/issues/998))
  1751    * provider/google: Remove "client secrets file", as it's no longer necessary
  1752        for API authentication ([#884](https://github.com/hashicorp/terraform/issues/884)).
  1753    * provider/google: Expose `self_link` on `google_compute_instance` ([#906](https://github.com/hashicorp/terraform/issues/906))
  1754  
  1755  BUG FIXES:
  1756  
  1757    * core: Fixing use of remote state with plan files. ([#741](https://github.com/hashicorp/terraform/issues/741))
  1758    * core: Fix a panic case when certain invalid types were used in
  1759        the configuration. ([#691](https://github.com/hashicorp/terraform/issues/691))
  1760    * core: Escape characters `\"`, `\n`, and `\\` now work in interpolations.
  1761    * core: Fix crash that could occur when there are exactly zero providers
  1762        installed on a system. ([#786](https://github.com/hashicorp/terraform/issues/786))
  1763    * core: JSON TF configurations can configure provisioners. ([#807](https://github.com/hashicorp/terraform/issues/807))
  1764    * core: Sort `depends_on` in state to prevent unnecessary file changes. ([#928](https://github.com/hashicorp/terraform/issues/928))
  1765    * core: State containing the zero value won't cause a diff with the
  1766        lack of a value. ([#952](https://github.com/hashicorp/terraform/issues/952))
  1767    * core: If a set type becomes empty, the state will be properly updated
  1768        to remove it. ([#952](https://github.com/hashicorp/terraform/issues/952))
  1769    * core: Bare "splat" variables are not allowed in provisioners. ([#636](https://github.com/hashicorp/terraform/issues/636))
  1770    * core: Invalid configuration keys to sub-resources are now errors. ([#740](https://github.com/hashicorp/terraform/issues/740))
  1771    * command/apply: Won't try to initialize modules in some cases when
  1772        no arguments are given. ([#780](https://github.com/hashicorp/terraform/issues/780))
  1773    * command/apply: Fix regression where user variables weren't asked ([#736](https://github.com/hashicorp/terraform/issues/736))
  1774    * helper/hashcode: Update `hash.String()` to always return a positive index.
  1775        Fixes issue where specific strings would convert to a negative index
  1776        and be omitted when creating Route53 records. ([#967](https://github.com/hashicorp/terraform/issues/967))
  1777    * provider/aws: Automatically suffix the Route53 zone name on record names. ([#312](https://github.com/hashicorp/terraform/issues/312))
  1778    * provider/aws: Instance should ignore root EBS devices. ([#877](https://github.com/hashicorp/terraform/issues/877))
  1779    * provider/aws: Fix `aws_db_instance` to not recreate each time. ([#874](https://github.com/hashicorp/terraform/issues/874))
  1780    * provider/aws: ASG termination policies are synced with remote state. ([#923](https://github.com/hashicorp/terraform/issues/923))
  1781    * provider/aws: ASG launch configuration setting can now be updated in-place. ([#904](https://github.com/hashicorp/terraform/issues/904))
  1782    * provider/aws: No read error when subnet is manually deleted. ([#889](https://github.com/hashicorp/terraform/issues/889))
  1783    * provider/aws: Tags with empty values (empty string) are properly
  1784        managed. ([#968](https://github.com/hashicorp/terraform/issues/968))
  1785    * provider/aws: Fix case where route table would delete its routes
  1786        on an unrelated change. ([#990](https://github.com/hashicorp/terraform/issues/990))
  1787    * provider/google: Fix bug preventing instances with metadata from being
  1788        created ([#884](https://github.com/hashicorp/terraform/issues/884)).
  1789  
  1790  PLUGIN CHANGES:
  1791  
  1792    * New `helper/schema` type: `TypeFloat` ([#594](https://github.com/hashicorp/terraform/issues/594))
  1793    * New `helper/schema` field for resources: `Exists` must point to a function
  1794        to check for the existence of a resource. This is used to properly
  1795        handle the case where the resource was manually deleted. ([#766](https://github.com/hashicorp/terraform/issues/766))
  1796    * There is a semantic change in `GetOk` where it will return `true` if
  1797        there is any value in the diff that is _non-zero_. Before, it would
  1798        return true only if there was a value in the diff.
  1799  
  1800  ## 0.3.6 (January 6, 2015)
  1801  
  1802  FEATURES:
  1803  
  1804    * **New provider: `cloudstack`**
  1805  
  1806  IMPROVEMENTS:
  1807  
  1808    * **New resource: `aws_key_pair`** - Import a public key into AWS. ([#695](https://github.com/hashicorp/terraform/issues/695))
  1809    * **New resource: `heroku_cert`** - Manage Heroku app certs.
  1810    * provider/aws: Support `eu-central-1`, `cn-north-1`, and GovCloud. ([#525](https://github.com/hashicorp/terraform/issues/525))
  1811    * provider/aws: `route_table` can have tags. ([#648](https://github.com/hashicorp/terraform/issues/648))
  1812    * provider/google: Support Ubuntu images. ([#724](https://github.com/hashicorp/terraform/issues/724))
  1813    * provider/google: Support for service accounts. ([#725](https://github.com/hashicorp/terraform/issues/725))
  1814  
  1815  BUG FIXES:
  1816  
  1817    * core: temporary/hidden files that look like Terraform configurations
  1818        are no longer loaded. ([#548](https://github.com/hashicorp/terraform/issues/548))
  1819    * core: Set types in resources now result in deterministic states,
  1820        resulting in cleaner plans. ([#663](https://github.com/hashicorp/terraform/issues/663))
  1821    * core: fix issue where "diff was not the same" would come up with
  1822        diffing lists. ([#661](https://github.com/hashicorp/terraform/issues/661))
  1823    * core: fix crash where module inputs weren't strings, and add more
  1824        validation around invalid types here. ([#624](https://github.com/hashicorp/terraform/issues/624))
  1825    * core: fix error when using a computed module output as an input to
  1826        another module. ([#659](https://github.com/hashicorp/terraform/issues/659))
  1827    * core: map overrides in "terraform.tfvars" no longer result in a syntax
  1828        error. ([#647](https://github.com/hashicorp/terraform/issues/647))
  1829    * core: Colon character works in interpolation ([#700](https://github.com/hashicorp/terraform/issues/700))
  1830    * provider/aws: Fix crash case when internet gateway is not attached
  1831        to any VPC. ([#664](https://github.com/hashicorp/terraform/issues/664))
  1832    * provider/aws: `vpc_id` is no longer required. ([#667](https://github.com/hashicorp/terraform/issues/667))
  1833    * provider/aws: `availability_zones` on ELB will contain more than one
  1834        AZ if it is set as such. ([#682](https://github.com/hashicorp/terraform/issues/682))
  1835    * provider/aws: More fields are marked as "computed" properly, resulting
  1836        in more accurate diffs for AWS instances. ([#712](https://github.com/hashicorp/terraform/issues/712))
  1837    * provider/aws: Fix panic case by using the wrong type when setting
  1838        volume size for AWS instances. ([#712](https://github.com/hashicorp/terraform/issues/712))
  1839    * provider/aws: route table ignores routes with 'EnableVgwRoutePropagation'
  1840        origin since those come from gateways. ([#722](https://github.com/hashicorp/terraform/issues/722))
  1841    * provider/aws: Default network ACL ID and default security group ID
  1842        support for `aws_vpc`. ([#704](https://github.com/hashicorp/terraform/issues/704))
  1843    * provider/aws: Tags are not marked as computed. This introduces another
  1844        issue with not detecting external tags, but this will be fixed in
  1845        the future. ([#730](https://github.com/hashicorp/terraform/issues/730))
  1846  
  1847  ## 0.3.5 (December 9, 2014)
  1848  
  1849  FEATURES:
  1850  
  1851   * **Remote State**: State files can now be stored remotely via HTTP,
  1852       Consul, or HashiCorp's Atlas.
  1853   * **New Provider: `atlas`**: Retrieve artifacts for deployment from
  1854       HashiCorp's Atlas service.
  1855   * New `element()` function to index into arrays
  1856  
  1857  IMPROVEMENTS:
  1858  
  1859    * provider/aws: Support tenancy for aws\_instance
  1860    * provider/aws: Support block devices for aws\_instance
  1861    * provider/aws: Support virtual\_name on block device
  1862    * provider/aws: Improve RDS reliability (more grace time)
  1863    * provider/aws: Added aws\_db\_parameter\_group resource
  1864    * provider/aws: Added tag support to aws\_subnet
  1865    * provider/aws: Routes in RouteTable are optional
  1866    * provider/aws: associate\_public\_ip\_address on aws\_launch\_configuration
  1867    * provider/aws: Added aws\_network\_acl
  1868    * provider/aws: Ingress rules in security groups are optional
  1869    * provider/aws: Support termination policy for ASG
  1870    * provider/digitalocean: Improved droplet size compatibility
  1871  
  1872  BUG FIXES:
  1873  
  1874    * core: Fixed issue causing double delete. ([#555](https://github.com/hashicorp/terraform/issues/555))
  1875    * core: Fixed issue with create-before-destroy not being respected in
  1876        some circumstances.
  1877    * core: Fixing issue with count expansion with non-homogenous instance
  1878        plans.
  1879    * core: Fix issue with referencing resource variables from resources
  1880        that don't exist yet within resources that do exist, or modules.
  1881    * core: Fixing depedency handling for modules
  1882    * core: Fixing output handling ([#474](https://github.com/hashicorp/terraform/issues/474))
  1883    * core: Fixing count interpolation in modules
  1884    * core: Fixing multi-var without module state
  1885    * core: Fixing HCL variable declaration
  1886    * core: Fixing resource interpolation for without state
  1887    * core: Fixing handling of computed maps
  1888    * command/init: Fixing recursion issue ([#518](https://github.com/hashicorp/terraform/issues/518))
  1889    * command: Validate config before requesting input ([#602](https://github.com/hashicorp/terraform/issues/602))
  1890    * build: Fixing GOPATHs with spaces
  1891  
  1892  MISC:
  1893  
  1894    * provider/aws: Upgraded to helper.Schema
  1895    * provider/heroku: Upgraded to helper.Schema
  1896    * provider/mailgun: Upgraded to helper.Schema
  1897    * provider/dnsimple: Upgraded to helper.Schema
  1898    * provider/cloudflare: Upgraded to helper.Schema
  1899    * provider/digitalocean: Upgraded to helper.Schema
  1900    * provider/google: Upgraded to helper.Schema
  1901  
  1902  ## 0.3.1 (October 21, 2014)
  1903  
  1904  IMPROVEMENTS:
  1905  
  1906    * providers/aws: Support tags for security groups.
  1907    * providers/google: Add "external\_address" to network attributes ([#454](https://github.com/hashicorp/terraform/issues/454))
  1908    * providers/google: External address is used as default connection host. ([#454](https://github.com/hashicorp/terraform/issues/454))
  1909    * providers/heroku: Support `locked` and `personal` booleans on organization
  1910        settings. ([#406](https://github.com/hashicorp/terraform/issues/406))
  1911  
  1912  BUG FIXES:
  1913  
  1914    * core: Remove panic case when applying with a plan that generates no
  1915        new state. ([#403](https://github.com/hashicorp/terraform/issues/403))
  1916    * core: Fix a hang that can occur with enough resources. ([#410](https://github.com/hashicorp/terraform/issues/410))
  1917    * core: Config validation will not error if the field is being
  1918        computed so the value is still unknown.
  1919    * core: If a resource fails to create and has provisioners, it is
  1920        marked as tainted. ([#434](https://github.com/hashicorp/terraform/issues/434))
  1921    * core: Set types are validated to be sets. ([#413](https://github.com/hashicorp/terraform/issues/413))
  1922    * core: String types are validated properly. ([#460](https://github.com/hashicorp/terraform/issues/460))
  1923    * core: Fix crash case when destroying with tainted resources. ([#412](https://github.com/hashicorp/terraform/issues/412))
  1924    * core: Don't execute provisioners in some cases on destroy.
  1925    * core: Inherited provider configurations will be properly interpolated. ([#418](https://github.com/hashicorp/terraform/issues/418))
  1926    * core: Refresh works properly if there are outputs that depend on resources
  1927        that aren't yet created. ([#483](https://github.com/hashicorp/terraform/issues/483))
  1928    * providers/aws: Refresh of launch configs and autoscale groups load
  1929        the correct data and don't incorrectly recreate themselves. ([#425](https://github.com/hashicorp/terraform/issues/425))
  1930    * providers/aws: Fix case where ELB would incorrectly plan to modify
  1931        listeners (with the same data) in some cases.
  1932    * providers/aws: Retry destroying internet gateway for some amount of time
  1933        if there is a dependency violation since it is probably just eventual
  1934        consistency (public facing resources being destroyed). ([#447](https://github.com/hashicorp/terraform/issues/447))
  1935    * providers/aws: Retry deleting security groups for some amount of time
  1936        if there is a dependency violation since it is probably just eventual
  1937        consistency. ([#436](https://github.com/hashicorp/terraform/issues/436))
  1938    * providers/aws: Retry deleting subnet for some amount of time if there is a
  1939        dependency violation since probably asynchronous destroy events take
  1940        place still. ([#449](https://github.com/hashicorp/terraform/issues/449))
  1941    * providers/aws: Drain autoscale groups before deleting. ([#435](https://github.com/hashicorp/terraform/issues/435))
  1942    * providers/aws: Fix crash case if launch config is manually deleted. ([#421](https://github.com/hashicorp/terraform/issues/421))
  1943    * providers/aws: Disassociate EIP before destroying.
  1944    * providers/aws: ELB treats subnets as a set.
  1945    * providers/aws: Fix case where in a destroy/create tags weren't reapplied. ([#464](https://github.com/hashicorp/terraform/issues/464))
  1946    * providers/aws: Fix incorrect/erroneous apply cases around security group
  1947        rules. ([#457](https://github.com/hashicorp/terraform/issues/457))
  1948    * providers/consul: Fix regression where `key` param changed to `keys. ([#475](https://github.com/hashicorp/terraform/issues/475))
  1949  
  1950  ## 0.3.0 (October 14, 2014)
  1951  
  1952  FEATURES:
  1953  
  1954    * **Modules**: Configuration can now be modularized. Modules can live on
  1955      GitHub, BitBucket, Git/Hg repos, HTTP URLs, and file paths. Terraform
  1956      automatically downloads/updates modules for you on request.
  1957    * **New Command: `init`**. This command initializes a Terraform configuration
  1958      from an existing Terraform module (also new in 0.3).
  1959    * **New Command: `destroy`**. This command destroys infrastructure
  1960      created with `apply`.
  1961    * Terraform will ask for user input to fill in required variables and
  1962      provider configurations if they aren't set.
  1963    * `terraform apply MODULE` can be used as a shorthand to quickly build
  1964      infrastructure from a module.
  1965    * The state file format is now JSON rather than binary. This allows for
  1966      easier machine and human read/write. Old binary state files will be
  1967      automatically upgraded.
  1968    * You can now specify `create_before_destroy` as an option for replacement
  1969      so that new resources are created before the old ones are destroyed.
  1970    * The `count` metaparameter can now contain interpolations (such as
  1971      variables).
  1972    * The current index for a resource with a `count` set can be interpolated
  1973      using `${count.index}`.
  1974    * Various paths can be interpolated with the `path.X` variables. For example,
  1975      the path to the current module can be interpolated using `${path.module}`.
  1976  
  1977  IMPROVEMENTS:
  1978  
  1979    * config: Trailing commas are now allowed for the final elements of lists.
  1980    * core: Plugins are loaded from `~/.terraform.d/plugins` (Unix) or
  1981      `%USERDATA%/terraform.d/plugins` (Windows).
  1982    * command/show: With no arguments, it will show the default state. ([#349](https://github.com/hashicorp/terraform/issues/349))
  1983    * helper/schema: Can now have default values. ([#245](https://github.com/hashicorp/terraform/issues/245))
  1984    * providers/aws: Tag support for most resources.
  1985    * providers/aws: New resource `db_subnet_group`. ([#295](https://github.com/hashicorp/terraform/issues/295))
  1986    * providers/aws: Add `map_public_ip_on_launch` for subnets. ([#285](https://github.com/hashicorp/terraform/issues/285))
  1987    * providers/aws: Add `iam_instance_profile` for instances. ([#319](https://github.com/hashicorp/terraform/issues/319))
  1988    * providers/aws: Add `internal` option for ELBs. ([#303](https://github.com/hashicorp/terraform/issues/303))
  1989    * providers/aws: Add `ssl_certificate_id` for ELB listeners. ([#350](https://github.com/hashicorp/terraform/issues/350))
  1990    * providers/aws: Add `self` option for security groups for ingress
  1991        rules with self as source. ([#303](https://github.com/hashicorp/terraform/issues/303))
  1992    * providers/aws: Add `iam_instance_profile` option to
  1993        `aws_launch_configuration`. ([#371](https://github.com/hashicorp/terraform/issues/371))
  1994    * providers/aws: Non-destructive update of `desired_capacity` for
  1995        autoscale groups.
  1996    * providers/aws: Add `main_route_table_id` attribute to VPCs. ([#193](https://github.com/hashicorp/terraform/issues/193))
  1997    * providers/consul: Support tokens. ([#396](https://github.com/hashicorp/terraform/issues/396))
  1998    * providers/google: Support `target_tags` for firewalls. ([#324](https://github.com/hashicorp/terraform/issues/324))
  1999    * providers/google: `google_compute_instance` supports `can_ip_forward` ([#375](https://github.com/hashicorp/terraform/issues/375))
  2000    * providers/google: `google_compute_disk` supports `type` to support disks
  2001        such as SSDs. ([#351](https://github.com/hashicorp/terraform/issues/351))
  2002    * provisioners/local-exec: Output from command is shown in CLI output. ([#311](https://github.com/hashicorp/terraform/issues/311))
  2003    * provisioners/remote-exec: Output from command is shown in CLI output. ([#311](https://github.com/hashicorp/terraform/issues/311))
  2004  
  2005  BUG FIXES:
  2006  
  2007    * core: Providers are validated even without a `provider` block. ([#284](https://github.com/hashicorp/terraform/issues/284))
  2008    * core: In the case of error, walk all non-dependent trees.
  2009    * core: Plugin loading from CWD works properly.
  2010    * core: Fix many edge cases surrounding the `count` meta-parameter.
  2011    * core: Strings in the configuration can escape double-quotes with the
  2012        standard `\"` syntax.
  2013    * core: Error parsing CLI config will show properly. ([#288](https://github.com/hashicorp/terraform/issues/288))
  2014    * core: More than one Ctrl-C will exit immediately.
  2015    * providers/aws: autoscaling_group can be launched into a vpc ([#259](https://github.com/hashicorp/terraform/issues/259))
  2016    * providers/aws: not an error when RDS instance is deleted manually. ([#307](https://github.com/hashicorp/terraform/issues/307))
  2017    * providers/aws: Retry deleting subnet for some time while AWS eventually
  2018        destroys dependencies. ([#357](https://github.com/hashicorp/terraform/issues/357))
  2019    * providers/aws: More robust destroy for route53 records. ([#342](https://github.com/hashicorp/terraform/issues/342))
  2020    * providers/aws: ELB generates much more correct plans without extraneous
  2021        data.
  2022    * providers/aws: ELB works properly with dynamically changing
  2023        count of instances.
  2024    * providers/aws: Terraform can handle ELBs deleted manually. ([#304](https://github.com/hashicorp/terraform/issues/304))
  2025    * providers/aws: Report errors properly if RDS fails to delete. ([#310](https://github.com/hashicorp/terraform/issues/310))
  2026    * providers/aws: Wait for launch configuration to exist after creation
  2027        (AWS eventual consistency) ([#302](https://github.com/hashicorp/terraform/issues/302))
  2028  
  2029  ## 0.2.2 (September 9, 2014)
  2030  
  2031  IMPROVEMENTS:
  2032  
  2033    * providers/amazon: Add `ebs_optimized` flag. ([#260](https://github.com/hashicorp/terraform/issues/260))
  2034    * providers/digitalocean: Handle 404 on delete
  2035    * providers/digitalocean: Add `user_data` argument for creating droplets
  2036    * providers/google: Disks can be marked `auto_delete`. ([#254](https://github.com/hashicorp/terraform/issues/254))
  2037  
  2038  BUG FIXES:
  2039  
  2040    * core: Fix certain syntax of configuration that could cause hang. ([#261](https://github.com/hashicorp/terraform/issues/261))
  2041    * core: `-no-color` flag properly disables color. ([#250](https://github.com/hashicorp/terraform/issues/250))
  2042    * core: "~" is expanded in `-var-file` flags. ([#273](https://github.com/hashicorp/terraform/issues/273))
  2043    * core: Errors with tfvars are shown in console. ([#269](https://github.com/hashicorp/terraform/issues/269))
  2044    * core: Interpolation function calls with more than two args parse. ([#282](https://github.com/hashicorp/terraform/issues/282))
  2045    * providers/aws: Refreshing EIP from pre-0.2 state file won't error. ([#258](https://github.com/hashicorp/terraform/issues/258))
  2046    * providers/aws: Creating EIP without an instance/network won't fail.
  2047    * providers/aws: Refreshing EIP manually deleted works.
  2048    * providers/aws: Retry EIP delete to allow AWS eventual consistency to
  2049        detect it isn't attached. ([#276](https://github.com/hashicorp/terraform/issues/276))
  2050    * providers/digitalocean: Handle situations when resource was destroyed
  2051        manually. ([#279](https://github.com/hashicorp/terraform/issues/279))
  2052    * providers/digitalocean: Fix a couple scenarios where the diff was
  2053        incorrect (and therefore the execution as well).
  2054    * providers/google: Attaching a disk source (not an image) works
  2055        properly. ([#254](https://github.com/hashicorp/terraform/issues/254))
  2056  
  2057  ## 0.2.1 (August 31, 2014)
  2058  
  2059  IMPROVEMENTS:
  2060  
  2061    * core: Plugins are automatically discovered in the executable directory
  2062        or pwd if named properly. ([#190](https://github.com/hashicorp/terraform/issues/190))
  2063    * providers/mailgun: domain records are now saved to state
  2064  
  2065  BUG FIXES:
  2066  
  2067    * core: Configuration parses when identifier and '=' have no space. ([#243](https://github.com/hashicorp/terraform/issues/243))
  2068    * core: `depends_on` with `count` generates the proper graph. ([#244](https://github.com/hashicorp/terraform/issues/244))
  2069    * core: Depending on a computed variable of a list type generates a
  2070        plan without failure. i.e. `${type.name.foos.0.bar}` where `foos`
  2071        is computed. ([#247](https://github.com/hashicorp/terraform/issues/247))
  2072    * providers/aws: Route53 destroys in parallel work properly. ([#183](https://github.com/hashicorp/terraform/issues/183))
  2073  
  2074  ## 0.2.0 (August 28, 2014)
  2075  
  2076  BACKWARDS INCOMPATIBILITIES:
  2077  
  2078    * We've replaced the configuration language in use from a C library to
  2079      a pure-Go reimplementation. In the process, we removed some features
  2080      of the language since it was too flexible:
  2081      * Semicolons are no longer valid at the end of lines
  2082      * Keys cannot be double-quoted strings: `"foo" = "bar"` is no longer
  2083        valid.
  2084      * JSON style maps `{ "foo": "bar" }` are no longer valid outside of JSON.
  2085        Maps must be in the format of `{ foo = "bar" }` (like other objects
  2086        in the config)
  2087    * Heroku apps now require (will not validate without) `region` and
  2088      `name` due to an upstream API change. ([#239](https://github.com/hashicorp/terraform/issues/239))
  2089  
  2090  FEATURES:
  2091  
  2092    * **New Provider: `google`**: Manage Google Compute instances, disks,
  2093        firewalls, and more.
  2094    * **New Provider: `mailgun`**: Manage mailgun domains.
  2095    * **New Function: `concat`**: Concatenate multiple strings together.
  2096      Example: `concat(var.region, "-", var.channel)`.
  2097  
  2098  IMPROVEMENTS:
  2099  
  2100    * core: "~/.terraformrc" (Unix) or "%APPDATA%/terraform.rc" (Windows)
  2101      can be used to configure custom providers and provisioners. ([#192](https://github.com/hashicorp/terraform/issues/192))
  2102    * providers/aws: EIPs now expose `allocation_id` and `public_ip`
  2103        attributes.
  2104    * providers/aws: Security group rules can be updated without a
  2105        destroy/create.
  2106    * providers/aws: You can enable and disable dns settings for VPCs. ([#172](https://github.com/hashicorp/terraform/issues/172))
  2107    * providers/aws: Can specify a private IP address for `aws_instance` ([#217](https://github.com/hashicorp/terraform/issues/217))
  2108  
  2109  BUG FIXES:
  2110  
  2111    * core: Variables are validated to not contain interpolations. ([#180](https://github.com/hashicorp/terraform/issues/180))
  2112    * core: Key files for provisioning can now contain `~` and will be expanded
  2113        to the user's home directory. ([#179](https://github.com/hashicorp/terraform/issues/179))
  2114    * core: The `file()` function can load files in sub-directories. ([#213](https://github.com/hashicorp/terraform/issues/213))
  2115    * core: Fix issue where some JSON structures didn't map properly into
  2116       Terraform structures. ([#177](https://github.com/hashicorp/terraform/issues/177))
  2117    * core: Resources with only `file()` calls will interpolate. ([#159](https://github.com/hashicorp/terraform/issues/159))
  2118    * core: Variables work in block names. ([#234](https://github.com/hashicorp/terraform/issues/234))
  2119    * core: Plugins are searched for in the same directory as the executable
  2120        before the PATH. ([#157](https://github.com/hashicorp/terraform/issues/157))
  2121    * command/apply: "tfvars" file no longer interferes with plan apply. ([#153](https://github.com/hashicorp/terraform/issues/153))
  2122    * providers/aws: Fix issues around failing to read EIPs. ([#122](https://github.com/hashicorp/terraform/issues/122))
  2123    * providers/aws: Autoscaling groups now register and export load
  2124      balancers. ([#207](https://github.com/hashicorp/terraform/issues/207))
  2125    * providers/aws: Ingress results are treated as a set, so order doesn't
  2126        matter anymore. ([#87](https://github.com/hashicorp/terraform/issues/87))
  2127    * providers/aws: Instance security groups treated as a set ([#194](https://github.com/hashicorp/terraform/issues/194))
  2128    * providers/aws: Retry Route53 requests if operation failed because another
  2129        operation is in progress ([#183](https://github.com/hashicorp/terraform/issues/183))
  2130    * providers/aws: Route53 records with multiple record values work. ([#221](https://github.com/hashicorp/terraform/issues/221))
  2131    * providers/aws: Changing AMI doesn't result in errors anymore. ([#196](https://github.com/hashicorp/terraform/issues/196))
  2132    * providers/heroku: If you delete the `config_vars` block, config vars
  2133        are properly nuked.
  2134    * providers/heroku: Domains and drains are deleted before the app.
  2135    * providers/heroku: Moved from the client library bgentry/heroku-go to
  2136        cyberdelia/heroku-go ([#239](https://github.com/hashicorp/terraform/issues/239)).
  2137    * providers/heroku: Plans without a specific plan name for
  2138        heroku\_addon work. ([#198](https://github.com/hashicorp/terraform/issues/198))
  2139  
  2140  PLUGIN CHANGES:
  2141  
  2142    * **New Package:** `helper/schema`. This introduces a high-level framework
  2143      for easily writing new providers and resources. The Heroku provider has
  2144      been converted to this as an example.
  2145  
  2146  ## 0.1.1 (August 5, 2014)
  2147  
  2148  FEATURES:
  2149  
  2150    * providers/heroku: Now supports creating Heroku Drains ([#97](https://github.com/hashicorp/terraform/issues/97))
  2151  
  2152  IMPROVEMENTS:
  2153  
  2154    * providers/aws: Launch configurations accept user data ([#94](https://github.com/hashicorp/terraform/issues/94))
  2155    * providers/aws: Regions are now validated ([#96](https://github.com/hashicorp/terraform/issues/96))
  2156    * providers/aws: ELB now supports health check configurations ([#109](https://github.com/hashicorp/terraform/issues/109))
  2157  
  2158  BUG FIXES:
  2159  
  2160    * core: Default variable file "terraform.tfvars" is auto-loaded. ([#59](https://github.com/hashicorp/terraform/issues/59))
  2161    * core: Multi-variables (`foo.*.bar`) work even when `count = 1`. ([#115](https://github.com/hashicorp/terraform/issues/115))
  2162    * core: `file()` function can have string literal arg ([#145](https://github.com/hashicorp/terraform/issues/145))
  2163    * providers/cloudflare: Include the proper bins so the cloudflare
  2164        provider is compiled
  2165    * providers/aws: Engine version for RDS now properly set ([#118](https://github.com/hashicorp/terraform/issues/118))
  2166    * providers/aws: Security groups now depend on each other and
  2167    * providers/aws: DB instances now wait for destroys, have proper
  2168        dependencies and allow passing skip_final_snapshot
  2169    * providers/aws: Add associate_public_ip_address as an attribute on
  2170        the aws_instance resource ([#85](https://github.com/hashicorp/terraform/issues/85))
  2171    * providers/aws: Fix cidr blocks being updated [GH-65, GH-85]
  2172    * providers/aws: Description is now required for security groups
  2173    * providers/digitalocean: Private IP addresses are now a separate
  2174        attribute
  2175    * provisioner/all: If an SSH key is given with a password, a better
  2176        error message is shown. ([#73](https://github.com/hashicorp/terraform/issues/73))
  2177  
  2178  ## 0.1.0 (July 28, 2014)
  2179  
  2180    * Initial release