Merge pull request #4066 from patrickdlee/master

Various grammar and spelling fixes in 0.6.7 and 0.6.8 change logs
This commit is contained in:
James Nugent 2015-11-25 19:54:23 +02:00
commit 183fc5c7e2
1 changed files with 31 additions and 31 deletions

View File

@ -6,13 +6,13 @@ FEATURES:
IMPROVEMENTS: IMPROVEMENTS:
* provider/cloudstack: Reduced the number of network call required for common operations [GH-4051] * provider/cloudstack: Reduce the number of network calls required for common operations [GH-4051]
BUG FIXES: BUG FIXES:
* provider/aws: Fixed a bug which could result in a panic when reading EC2 metadata [GH-4024] * provider/aws: Fix a bug which could result in a panic when reading EC2 metadata [GH-4024]
* provisioner/chef: Fix issue with path separators breaking the Chef provisioner on Windows [GH-4041] * provisioner/chef: Fix issue with path separators breaking the Chef provisioner on Windows [GH-4041]
* providers/aws: Fix issue recreating security group rule if it has been destroyed [GH-4050] * provider/aws: Fix issue recreating security group rule if it has been destroyed [GH-4050]
## 0.6.7 (November 23, 2015) ## 0.6.7 (November 23, 2015)
@ -39,20 +39,20 @@ FEATURES:
IMPROVEMENTS: IMPROVEMENTS:
* core: Improve message to list only resources which will be destroyed when using `--target` [GH-3859] * core: Improve message to list only resources which will be destroyed when using `--target` [GH-3859]
* connection/ssh: accept private_key contents instead of paths [GH-3846] * connection/ssh: Accept `private_key` contents instead of paths [GH-3846]
* provider/google: preemptible option for instance_template [GH-3667] * provider/google: `preemptible` option for instance_template [GH-3667]
* provider/google: Accurate Terraform Version [GH-3554] * provider/google: Accurate Terraform Version [GH-3554]
* provider/google: Simplified auth (DefaultClient support) [GH-3553] * provider/google: Simplified auth (DefaultClient support) [GH-3553]
* provider/google: automatic_restart, preemptible, on_host_maintenance options [GH-3643] * provider/google: `automatic_restart`, `preemptible`, `on_host_maintenance` options [GH-3643]
* provider/google: read credentials as contents instead of path [GH-3901] * provider/google: Read credentials as contents instead of path [GH-3901]
* null_resource: enhance and document [GH-3244, GH-3659] * null_resource: Enhance and document [GH-3244, GH-3659]
* provider/aws: Add CORS settings to S3 bucket [GH-3387] * provider/aws: Add CORS settings to S3 bucket [GH-3387]
* provider/aws: Add notification topic ARN for ElastiCache clusters [GH-3674] * provider/aws: Add notification topic ARN for ElastiCache clusters [GH-3674]
* provider/aws: Add `kinesis_endpoint` for configuring Kinesis [GH-3255] * provider/aws: Add `kinesis_endpoint` for configuring Kinesis [GH-3255]
* provider/aws: Add a computed ARN for S3 Buckets [GH-3685] * provider/aws: Add a computed ARN for S3 Buckets [GH-3685]
* provider/aws: Add S3 support for Lambda Function resource [GH-3794] * provider/aws: Add S3 support for Lambda Function resource [GH-3794]
* provider/aws: Add `name_prefix` option to launch configurations [GH-3802] * provider/aws: Add `name_prefix` option to launch configurations [GH-3802]
* provider/aws: add support for group name and path changes with IAM group update function [GH-3237] * provider/aws: Add support for group name and path changes with IAM group update function [GH-3237]
* provider/aws: Provide `source_security_group_id` for ELBs inside a VPC [GH-3780] * provider/aws: Provide `source_security_group_id` for ELBs inside a VPC [GH-3780]
* provider/aws: Add snapshot window and retention limits for ElastiCache (Redis) [GH-3707] * provider/aws: Add snapshot window and retention limits for ElastiCache (Redis) [GH-3707]
* provider/aws: Add username updates for `aws_iam_user` [GH-3227] * provider/aws: Add username updates for `aws_iam_user` [GH-3227]
@ -62,44 +62,44 @@ IMPROVEMENTS:
* provider/aws: `engine_version` is now optional for DB Instance [GH-3744] * provider/aws: `engine_version` is now optional for DB Instance [GH-3744]
* provider/aws: Add configuration to enable copying RDS tags to final snapshot [GH-3529] * provider/aws: Add configuration to enable copying RDS tags to final snapshot [GH-3529]
* provider/aws: RDS Cluster additions (`backup_retention_period`, `preferred_backup_window`, `preferred_maintenance_window`) [GH-3757] * provider/aws: RDS Cluster additions (`backup_retention_period`, `preferred_backup_window`, `preferred_maintenance_window`) [GH-3757]
* provider/aws: Document and validate ELB ssl_cert and protocol requirements [GH-3887] * provider/aws: Document and validate ELB `ssl_certificate_id` and protocol requirements [GH-3887]
* provider/azure: Read publish_settings as contents instead of path [GH-3899] * provider/azure: Read `publish_settings` as contents instead of path [GH-3899]
* provider/openstack: Use IPv4 as the defeault IP version for subnets [GH-3091] * provider/openstack: Use IPv4 as the default IP version for subnets [GH-3091]
* provider/aws: Apply security group after restoring db_instance from snapshot [GH-3513] * provider/aws: Apply security group after restoring `db_instance` from snapshot [GH-3513]
* provider/aws: Making the AutoScalingGroup name optional [GH-3710] * provider/aws: Make the AutoScalingGroup `name` optional [GH-3710]
* provider/openstack: Add "delete on termination" boot-from-volume option [GH-3232] * provider/openstack: Add "delete on termination" boot-from-volume option [GH-3232]
* provider/digitalocean: Make user_data force a new droplet [GH-3740] * provider/digitalocean: Make `user_data` force a new droplet [GH-3740]
* provider/vsphere: Do not add network interfaces by default [GH-3652] * provider/vsphere: Do not add network interfaces by default [GH-3652]
* provider/openstack: Configure Fixed IPs through ports [GH-3772] * provider/openstack: Configure Fixed IPs through ports [GH-3772]
* provider/openstack: Specify a port ID on a Router Interface [GH-3903] * provider/openstack: Specify a port ID on a Router Interface [GH-3903]
* provider/openstack: Made LBaaS Virtual IP computed [GH-3927] * provider/openstack: Make LBaaS Virtual IP computed [GH-3927]
BUG FIXES: BUG FIXES:
* `terraform remote config`: update `--help` output [GH-3632] * `terraform remote config`: update `--help` output [GH-3632]
* core: modules on Git branches now update properly [GH-1568] * core: Modules on Git branches now update properly [GH-1568]
* core: Fix issue preventing input prompts for unset variables during plan [GH-3843] * core: Fix issue preventing input prompts for unset variables during plan [GH-3843]
* core: Fix issue preventing input prompts for unset variables during refresh [GH-4017] * core: Fix issue preventing input prompts for unset variables during refresh [GH-4017]
* core: Orphan resources can now be targets [GH-3912] * core: Orphan resources can now be targets [GH-3912]
* helper/schema: skip StateFunc when value is nil [GH-4002] * helper/schema: Skip StateFunc when value is nil [GH-4002]
* provider/google: Timeout when deleting large instance_group_manager [GH-3591] * provider/google: Timeout when deleting large `instance_group_manager` [GH-3591]
* provider/aws: Fix issue with order of Termincation Policies in AutoScaling Groups. * provider/aws: Fix issue with order of Termination Policies in AutoScaling Groups.
This will introduce plans on upgrade to this version, in order to correct the ordering [GH-2890] This will introduce plans on upgrade to this version, in order to correct the ordering [GH-2890]
* provider/aws: Allow cluster name, not only ARN for `aws_ecs_service` [GH-3668] * provider/aws: Allow cluster name, not only ARN for `aws_ecs_service` [GH-3668]
* provider/aws: Fix a bug where a non-lower-cased `maintenance_window` can cause unnecessary planned changes [GH-4020] * provider/aws: Fix a bug where a non-lower-cased `maintenance_window` can cause unnecessary planned changes [GH-4020]
* provider/aws: Only set `weight` on an `aws_route53_record` if it has been set in configuration [GH-3900] * provider/aws: Only set `weight` on an `aws_route53_record` if it has been set in configuration [GH-3900]
* provider/aws: ignore association not exist on route table destroy [GH-3615] * provider/aws: Ignore association not existing on route table destroy [GH-3615]
* provider/aws: Fix policy encoding issue with SNS Topics [GH-3700] * provider/aws: Fix policy encoding issue with SNS Topics [GH-3700]
* provider/aws: Correctly export ARN in `aws_iam_saml_provider` [GH-3827] * provider/aws: Correctly export ARN in `aws_iam_saml_provider` [GH-3827]
* provider/aws: Fix issue deleting users who are attached to a group [GH-4005] * provider/aws: Fix issue deleting users who are attached to a group [GH-4005]
* provider/aws: Fix crash in Route53 Record if Zone not found [GH-3945] * provider/aws: Fix crash in Route53 Record if Zone not found [GH-3945]
* providers/aws: Retry deleting IAM Server Cert on dependency violation [GH-3898] * provider/aws: Retry deleting IAM Server Cert on dependency violation [GH-3898]
* providers/aws: Update Spot Instance request to provide connection information [GH-3940] * provider/aws: Update Spot Instance request to provide connection information [GH-3940]
* providers/aws: Fix typo in error checking for IAM Policy Attachments [GH-3970] * provider/aws: Fix typo in error checking for IAM Policy Attachments [GH-3970]
* provider/aws: Fix issue with LB Cookie Stickiness and empty expiration period [GH-3908] * provider/aws: Fix issue with LB Cookie Stickiness and empty expiration period [GH-3908]
* provider/aws: Tolerate ElastiCache clusters being deleted outside Terraform [GH-3767] * provider/aws: Tolerate ElastiCache clusters being deleted outside Terraform [GH-3767]
* provider/aws: Downcase Route 53 record names in statefile to match API output [GH-3574] * provider/aws: Downcase Route 53 record names in state file to match API output [GH-3574]
* provider/aws: Fix issue that could occur if no ECS Cluster was found for a give name [GH-3829] * provider/aws: Fix issue that could occur if no ECS Cluster was found for a given name [GH-3829]
* provider/aws: Fix issue with SNS topic policy if omitted [GH-3777] * provider/aws: Fix issue with SNS topic policy if omitted [GH-3777]
* provider/aws: Support scratch volumes in `aws_ecs_task_definition` [GH-3810] * provider/aws: Support scratch volumes in `aws_ecs_task_definition` [GH-3810]
* provider/aws: Treat `aws_ecs_service` w/ Status==INACTIVE as deleted [GH-3828] * provider/aws: Treat `aws_ecs_service` w/ Status==INACTIVE as deleted [GH-3828]
@ -108,12 +108,12 @@ BUG FIXES:
* provider/aws: Prevent crashing when deleting `aws_ecs_service` that is already gone [GH-3914] * provider/aws: Prevent crashing when deleting `aws_ecs_service` that is already gone [GH-3914]
* provider/aws: Allow spaces in `aws_db_subnet_group.name` (undocumented in the API) [GH-3955] * provider/aws: Allow spaces in `aws_db_subnet_group.name` (undocumented in the API) [GH-3955]
* provider/aws: Make VPC ID required on subnets [GH-4021] * provider/aws: Make VPC ID required on subnets [GH-4021]
* provider/azure: various bugfixes [GH-3695] * provider/azure: Various bug fixes [GH-3695]
* provider/digitalocean: fix issue preventing SSH fingerprints from working [GH-3633] * provider/digitalocean: Fix issue preventing SSH fingerprints from working [GH-3633]
* provider/digitalocean: Fixing the DigitalOcean Droplet 404 potential on refresh of state [GH-3768] * provider/digitalocean: Fix the DigitalOcean Droplet 404 potential on refresh of state [GH-3768]
* provider/openstack: Fix several issues causing unresolvable diffs [GH-3440] * provider/openstack: Fix several issues causing unresolvable diffs [GH-3440]
* provider/openstack: Safely delete security groups [GH-3696] * provider/openstack: Safely delete security groups [GH-3696]
* provider/openstack: Ignore order of security_groups in instance [GH-3651] * provider/openstack: Ignore order of `security_groups` in instance [GH-3651]
* provider/vsphere: Fix d.SetConnInfo error in case of a missing IP address [GH-3636] * provider/vsphere: Fix d.SetConnInfo error in case of a missing IP address [GH-3636]
* provider/openstack: Fix boot from volume [GH-3206] * provider/openstack: Fix boot from volume [GH-3206]
* provider/openstack: Fix crashing when image is no longer accessible [GH-2189] * provider/openstack: Fix crashing when image is no longer accessible [GH-2189]
@ -122,7 +122,7 @@ BUG FIXES:
* provider/packet: Fix issue that could cause errors when provisioning many devices at once [GH-3847] * provider/packet: Fix issue that could cause errors when provisioning many devices at once [GH-3847]
* provider/packet: Fix connection information for devices, allowing provisioners to run [GH-3948] * provider/packet: Fix connection information for devices, allowing provisioners to run [GH-3948]
* provider/openstack: Fix issue preventing security group rules from being removed [GH-3796] * provider/openstack: Fix issue preventing security group rules from being removed [GH-3796]
* provider/template: template_file: source contents instead of path [GH-3909] * provider/template: `template_file`: source contents instead of path [GH-3909]
## 0.6.6 (October 23, 2015) ## 0.6.6 (October 23, 2015)