Skip to content

Commit

Permalink
hashicorp#2217: make fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
trung committed Nov 29, 2017
1 parent 897ac16 commit c74d8af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aws/resource_aws_s3_bucket.go
Original file line number Diff line number Diff line change
Expand Up @@ -1589,7 +1589,7 @@ func resourceAwsS3BucketServerSideEncryptionConfigurationUpdate(s3conn *s3.S3, d
rr := v.(map[string]interface{})
rrDefault := rr["apply_server_side_encryption_by_default"].(map[string]interface{})
rcDefaultRule := &s3.ServerSideEncryptionByDefault{
SSEAlgorithm: aws.String(rrDefault["sse_algorithm"].(string)),
SSEAlgorithm: aws.String(rrDefault["sse_algorithm"].(string)),
KMSMasterKeyID: aws.String(rrDefault["kms_master_key_id"].(string)),
}
rcRule := &s3.ServerSideEncryptionRule{
Expand Down

0 comments on commit c74d8af

Please sign in to comment.