Skip to content

Commit

Permalink
Merge pull request #1820 from terraform-providers/b-cloudtrail-update…
Browse files Browse the repository at this point in the history
…-timeout

r/cloudtrail: Raise update retry timeout
  • Loading branch information
radeksimko authored Oct 9, 2017
2 parents 93d30d6 + 8e4c192 commit 534bd46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aws/resource_aws_cloudtrail.go
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ func resourceAwsCloudTrailUpdate(d *schema.ResourceData, meta interface{}) error

log.Printf("[DEBUG] Updating CloudTrail: %s", input)
var t *cloudtrail.UpdateTrailOutput
err := resource.Retry(15*time.Second, func() *resource.RetryError {
err := resource.Retry(30*time.Second, func() *resource.RetryError {
var err error
t, err = conn.UpdateTrail(&input)
if err != nil {
Expand Down

0 comments on commit 534bd46

Please sign in to comment.