Skip to content

Commit

Permalink
Merge branch '0-8-stable' of github.com:hashicorp/terraform into 0-8-…
Browse files Browse the repository at this point in the history
…stable

* '0-8-stable' of github.com:hashicorp/terraform:
  Update CHANGELOG.md
  provider/aws: Prevent aws_dms_replication_task panic (#12539)
  • Loading branch information
catsby committed Mar 8, 2017
2 parents 586326b + 5343e4b commit 15c747f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ IMPROVEMENTS:
* provider/docker: added support for linux capabilities [GH-12045]
* provider/ignition: Migrate all of the igition resources to data sources [GH-11851]


BUG FIXES:

* provider/aws: Fixes issue for aws_lb_ssl_negotiation_policy of already deleted ELB [GH-12360]
Expand All @@ -25,6 +24,7 @@ BUG FIXES:
* provider/aws: Check spot instance is running before trying to attach volumes [GH-12459]
* provider/aws: Add the IPV6 cidr block to the vpc datasource [GH-12529]
* provider/aws: Error on trying to recreate an existing customer gateway [GH-12501]
* provider/aws: Prevent aws_dms_replication_task panic [GH-12539]
* provider/azurerm: bug fix to prevent crashes during azurerm_container_service provisioning [GH-12516]
* provider/datadog: Update to datadog_monitor to use default values [GH-12497]
* provider/google: Minor correction : "Deleting disk" message in Delete method [GH-12521]
Expand Down
2 changes: 1 addition & 1 deletion builtin/providers/aws/resource_aws_dms_replication_task.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ func resourceAwsDmsReplicationTask() *schema.Resource {

Schema: map[string]*schema.Schema{
"cdc_start_time": {
Type: schema.TypeInt,
Type: schema.TypeString,
Optional: true,
// Requires a Unix timestamp in seconds. Example 1484346880
},
Expand Down

0 comments on commit 15c747f

Please sign in to comment.