provider/aws: Fixed the need of sending S3 Replication StorageClass when not set

This commit is contained in:
Ninir 2016-12-24 11:47:04 +01:00
parent fc6e2a1b79
commit 88b3cc5b58
2 changed files with 67 additions and 2 deletions

View File

@ -1428,12 +1428,11 @@ func resourceAwsS3BucketReplicationConfigurationUpdate(s3conn *s3.S3, d *schema.
bd := dest[0].(map[string]interface{}) bd := dest[0].(map[string]interface{})
ruleDestination.Bucket = aws.String(bd["bucket"].(string)) ruleDestination.Bucket = aws.String(bd["bucket"].(string))
if storageClass, ok := bd["storage_class"]; ok { if storageClass, ok := bd["storage_class"]; ok && storageClass != "" {
ruleDestination.StorageClass = aws.String(storageClass.(string)) ruleDestination.StorageClass = aws.String(storageClass.(string))
} }
} }
rcRule.Destination = ruleDestination rcRule.Destination = ruleDestination
rules = append(rules, rcRule) rules = append(rules, rcRule)
} }

View File

@ -635,6 +635,35 @@ func TestAccAWSS3Bucket_Replication(t *testing.T) {
}) })
} }
// StorageClass issue: https://github.com/hashicorp/terraform/issues/10909
func TestAccAWSS3Bucket_ReplicationWithoutStorageClass(t *testing.T) {
rInt := acctest.RandInt()
// record the initialized providers so that we can use them to check for the instances in each region
var providers []*schema.Provider
providerFactories := map[string]terraform.ResourceProviderFactory{
"aws": func() (terraform.ResourceProvider, error) {
p := Provider()
providers = append(providers, p.(*schema.Provider))
return p, nil
},
}
resource.Test(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) },
ProviderFactories: providerFactories,
CheckDestroy: testAccCheckAWSS3BucketDestroyWithProviders(&providers),
Steps: []resource.TestStep{
{
Config: testAccAWSS3BucketConfigReplicationWithoutStorageClass(rInt),
Check: resource.ComposeTestCheckFunc(
testAccCheckAWSS3BucketExistsWithProviders("aws_s3_bucket.bucket", &providers),
),
},
},
})
}
func TestAccAWSS3Bucket_ReplicationExpectVersioningValidationError(t *testing.T) { func TestAccAWSS3Bucket_ReplicationExpectVersioningValidationError(t *testing.T) {
rInt := acctest.RandInt() rInt := acctest.RandInt()
@ -1426,6 +1455,43 @@ resource "aws_s3_bucket" "destination" {
`, randInt, randInt, randInt) `, randInt, randInt, randInt)
} }
func testAccAWSS3BucketConfigReplicationWithoutStorageClass(randInt int) string {
return fmt.Sprintf(testAccAWSS3BucketConfigReplicationBasic+`
resource "aws_s3_bucket" "bucket" {
provider = "aws.uswest2"
bucket = "tf-test-bucket-%d"
acl = "private"
versioning {
enabled = true
}
replication_configuration {
role = "${aws_iam_role.role.arn}"
rules {
id = "foobar"
prefix = "foo"
status = "Enabled"
destination {
bucket = "${aws_s3_bucket.destination.arn}"
}
}
}
}
resource "aws_s3_bucket" "destination" {
provider = "aws.euwest"
bucket = "tf-test-bucket-destination-%d"
region = "eu-west-1"
versioning {
enabled = true
}
}
`, randInt, randInt, randInt)
}
func testAccAWSS3BucketConfigReplicationNoVersioning(randInt int) string { func testAccAWSS3BucketConfigReplicationNoVersioning(randInt int) string {
return fmt.Sprintf(testAccAWSS3BucketConfigReplicationBasic+` return fmt.Sprintf(testAccAWSS3BucketConfigReplicationBasic+`
resource "aws_s3_bucket" "bucket" { resource "aws_s3_bucket" "bucket" {