Skip to content

Commit

Permalink
Merge pull request #9031 from kjmkznr/b-aws-s3-lifecycle
Browse files Browse the repository at this point in the history
provider/aws: Fix failed remove S3 lifecycle_rule
  • Loading branch information
stack72 authored Sep 24, 2016
2 parents 07edf65 + 71f721c commit 979af97
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
17 changes: 17 additions & 0 deletions builtin/providers/aws/resource_aws_s3_bucket.go
Original file line number Diff line number Diff line change
Expand Up @@ -1241,6 +1241,23 @@ func resourceAwsS3BucketLifecycleUpdate(s3conn *s3.S3, d *schema.ResourceData) e

lifecycleRules := d.Get("lifecycle_rule").([]interface{})

if len(lifecycleRules) == 0 {
i := &s3.DeleteBucketLifecycleInput{
Bucket: aws.String(bucket),
}

err := resource.Retry(1*time.Minute, func() *resource.RetryError {
if _, err := s3conn.DeleteBucketLifecycle(i); err != nil {
return resource.NonRetryableError(err)
}
return nil
})
if err != nil {
return fmt.Errorf("Error putting S3 lifecycle: %s", err)
}
return nil
}

rules := make([]*s3.LifecycleRule, 0, len(lifecycleRules))

for i, lifecycleRule := range lifecycleRules {
Expand Down
6 changes: 6 additions & 0 deletions builtin/providers/aws/resource_aws_s3_bucket_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -566,6 +566,12 @@ func TestAccAWSS3Bucket_Lifecycle(t *testing.T) {
"aws_s3_bucket.bucket", "lifecycle_rule.1.noncurrent_version_expiration.80908210.days", "365"),
),
},
resource.TestStep{
Config: testAccAWSS3BucketConfig(rInt),
Check: resource.ComposeTestCheckFunc(
testAccCheckAWSS3BucketExists("aws_s3_bucket.bucket"),
),
},
},
})
}
Expand Down

0 comments on commit 979af97

Please sign in to comment.